├── .dockerignore ├── .github └── workflows │ ├── i18n.yml │ └── master.yml ├── .gitignore ├── .ssh └── known_hosts ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── icons ├── export │ ├── falling-sky-icons-spinner │ │ ├── spinner00.png │ │ ├── spinner01.png │ │ ├── spinner02.png │ │ ├── spinner03.png │ │ ├── spinner04.png │ │ ├── spinner05.png │ │ ├── spinner06.png │ │ ├── spinner07.png │ │ ├── spinner08.png │ │ ├── spinner09.png │ │ ├── spinner10.png │ │ ├── spinner11.png │ │ ├── spinner12.png │ │ ├── spinner13.png │ │ ├── spinner14.png │ │ ├── spinner15.png │ │ ├── spinner16.png │ │ ├── spinner17.png │ │ ├── spinner18.png │ │ ├── spinner19.png │ │ ├── spinner20.png │ │ ├── spinner21.png │ │ ├── spinner22.png │ │ └── spinner23.png │ └── falling-sky-icons │ │ ├── X.png │ │ ├── cloud.png │ │ ├── favicon.png │ │ ├── hires_attention.png │ │ ├── hires_bad.png │ │ ├── hires_grey.png │ │ ├── hires_info.png │ │ ├── hires_link.png │ │ ├── hires_offline.png │ │ ├── hires_ok.png │ │ ├── information.png │ │ ├── knob_blue.png │ │ ├── knob_gray 2.png │ │ ├── knob_gray.png │ │ ├── knob_green.png │ │ ├── knob_orange.png │ │ ├── knob_red.png │ │ ├── knob_yellow.png │ │ ├── link.png │ │ ├── test.png │ │ ├── there is no cloud.png │ │ ├── triangle_red.png │ │ ├── triangle_yellow.png │ │ ├── warning.png │ │ └── √.png ├── falling-sky-icons-spinner.graffle ├── falling-sky-icons.graffle └── website_icon.graffle ├── images ├── 6to4-broker.png ├── 6to4-tunnel.png ├── 6to4-v4only.png ├── Language-Icons.zip ├── Language-Icons │ ├── Language-Icon-Fireworks [Converted].eps │ ├── Language-Icon-Fireworks.ai │ ├── Language-Icon-Fireworks.png │ ├── LanguageIcon-Big.jpg │ ├── icon128px-exported-black.jpg │ ├── icon128px-exported-black.png │ ├── icon128px-exported-blue.jpg │ ├── icon128px-exported-red.jpg │ ├── icon128px-gradient.png │ ├── icon128px-red.png │ ├── icon128px.png │ ├── icon20x24px-Fireworks.png │ ├── icon20x24px-exported-transparent.png │ └── icon20x24px-exported.jpg ├── README-IMAGES.txt ├── asc.gif ├── bg.gif ├── blank.gif ├── desc.gif ├── faq_pmtud_6in4.png ├── faq_pmtud_6in4in4.png ├── favicon-128.png ├── favicon-152.png ├── favicon-16.png ├── favicon-167.png ├── favicon-180.png ├── favicon-192.png ├── favicon-256.png ├── favicon-32.png ├── favicon-64.png ├── favicon.ico ├── hires_attention.png ├── hires_bad.png ├── hires_grey.png ├── hires_info.png ├── hires_link.png ├── hires_offline.png ├── hires_ok.png ├── hires_spinner.gif ├── icon128px-red.png ├── icon_987.license ├── icon_987.png ├── icon_987.svg ├── icon_987_blue.png ├── icon_987_red.png ├── ipv4_nat_1.jpg ├── ipv4_nat_2.jpg ├── knob_buttons_toolbar_icons_by_itweek.zip ├── knob_green.png ├── knob_info.png ├── knob_valid_green.png ├── ood-add.sh ├── ood_0c8a4e1a.png ├── ood_9166521b.png ├── ood_b35131cf.png ├── ood_readme.txt ├── snapshot.png ├── spinner.gif └── website_icon.svg ├── sites ├── Makefile ├── disabled.json ├── mirrors-with-stats-enabled.pl ├── old ├── old.dir │ ├── parse-sites-yaml.pl │ ├── send-notification │ └── sites.yaml ├── parse-sites.go ├── sites.disabled ├── sites.json └── versions │ ├── sites.json │ └── versions.go ├── support ├── add-build-date ├── crowdin-cli.jar ├── fold_end.sh └── fold_start.sh ├── templates ├── Makefile ├── apache │ ├── DEADJOE │ ├── config.js.example │ ├── dot.htaccess │ ├── images-nc.htaccess │ ├── images.htaccess │ ├── ip.htaccess │ ├── private.js.example │ ├── vhost-long.conf.example │ └── vhost-short.conf.example ├── css │ ├── inc │ │ ├── color-schemes.inc │ │ ├── list-nav.inc │ │ ├── tabbox.inc │ │ ├── tablesorter.inc │ │ └── tabnav.inc │ └── index.css ├── html │ ├── 6to4.html │ ├── attributions.html │ ├── broken.html │ ├── comcast.html │ ├── faq.html │ ├── faq │ │ ├── 6to4_sucks.inc │ │ ├── broken_6to4.inc │ │ ├── broken_bogon.inc │ │ ├── broken_disable.inc │ │ ├── broken_tunnelbroker.inc │ │ ├── broken_ula.inc │ │ ├── broken_unexpected.inc │ │ ├── brokers.inc │ │ ├── dontfeelbad.inc │ │ ├── dontstress.inc │ │ ├── find_ip.inc │ │ ├── intro_js.inc │ │ ├── matrix_os.inc │ │ ├── nothingwillbreak.inc │ │ ├── plugins_firefox.inc │ │ ├── plugins_tryagain.inc │ │ ├── simple_test.inc │ │ ├── staycurrent.inc │ │ ├── teredo_advice.inc │ │ ├── teredo_iponly.inc │ │ ├── unable_to_see_ipv6.inc │ │ └── whyipv6.inc │ ├── faq_6to4.html │ ├── faq_avoids_ipv6.html │ ├── faq_broken_aaaa.html │ ├── faq_browser_plugins.html │ ├── faq_disable.html │ ├── faq_firefox_plugins.html │ ├── faq_helpdesk.html │ ├── faq_ipv4_only.html │ ├── faq_no_ipv4.html │ ├── faq_no_ipv6.html │ ├── faq_pmtud.html │ ├── faq_teredo.html │ ├── faq_teredo_minimum.html │ ├── faq_tunnel.html │ ├── faq_tunnel_6rd.html │ ├── faq_v6ns_bad.html │ ├── faq_whyipv6.html │ ├── ignore.html │ ├── inc │ │ ├── broken_options.inc │ │ ├── debug.inc │ │ ├── disclaimer.inc │ │ ├── fixup_html.inc │ │ ├── fixup_html_minimal.inc │ │ ├── footer.inc │ │ ├── header.inc │ │ ├── index.inc │ │ ├── js_required.inc │ │ ├── list-nav.inc │ │ ├── logo-bottom.inc │ │ ├── sites.inc │ │ └── tunnel.inc │ ├── index.html │ ├── locale.html │ ├── main │ │ ├── helpdesk.inc │ │ ├── mail-language.inc │ │ ├── mail.inc │ │ ├── progress_bar.inc │ │ ├── results.inc │ │ ├── tab_debug.inc │ │ ├── tab_helpdesk.inc │ │ ├── tab_mail.inc │ │ ├── tab_main.inc │ │ ├── tab_other_sites.inc │ │ ├── tab_tech.inc │ │ ├── tab_tests.inc │ │ ├── tabnav.inc │ │ ├── tabs.inc │ │ ├── tech.inc │ │ └── tests.inc │ ├── mirrors.html │ ├── mirrorstats.html │ ├── mission.html │ ├── nat.html │ ├── neg.html │ ├── pop-pr.html │ ├── simple_test.html │ ├── source.html │ ├── stats.html │ └── version.html ├── js │ ├── Makefile │ ├── ext │ │ ├── NOTICE │ │ ├── dygraph-combined.js │ │ ├── dygraph-sync.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.12.2.js │ │ ├── jquery-1.12.2.min.js │ │ ├── jquery-1.4.2.js │ │ ├── jquery-1.4.2.min.js │ │ ├── jquery-1.5.js │ │ ├── jquery-1.5.min.js │ │ ├── jquery-migrate-1.2.1.js │ │ ├── jquery-migrate-1.2.1.min.js │ │ ├── jquery.jsonp-2.0.2.js │ │ ├── jquery.md5.js │ │ ├── jquery.tablesorter.js │ │ ├── jquery.tablesorter.min.js │ │ ├── json3.min.js │ │ ├── mootools-1.2.4-core.js │ │ ├── mootools-core-1.3-full-compat.js │ │ └── mootools-core-1.4.5.js │ ├── inc │ │ ├── GIGO.js │ │ ├── Makefile │ │ ├── builtin.js │ │ ├── checkresults.js │ │ ├── console.js │ │ ├── dumpObj.js │ │ ├── fake.js │ │ ├── form.js │ │ ├── gettext.js │ │ ├── helpdesk.js │ │ ├── init.js │ │ ├── jquery.js │ │ ├── main.js │ │ ├── messages.js │ │ ├── mirrorconfig.js │ │ ├── onerror.js │ │ ├── ood.js │ │ ├── pretty │ │ ├── pulse.js │ │ ├── scores.js │ │ ├── show_os.js │ │ ├── sites_check.js │ │ ├── sym_helpdesk.js │ │ ├── sym_primary.js │ │ ├── symptoms.js │ │ ├── tablesorter.js │ │ ├── tabnav.js │ │ ├── text-generated │ │ │ └── README │ │ ├── toyaml │ │ ├── transparent.js │ │ └── versions.js │ ├── index.js │ └── stats.js └── php │ ├── Makefile │ ├── comment.php │ ├── common.php │ ├── common5.php │ ├── errors.php │ ├── survey.php │ └── survey5.php └── translations ├── Makefile ├── README.md ├── compare ├── crowdin.yaml.enc ├── crowdin.yaml.example ├── dl ├── README.md ├── af │ ├── README.md │ └── falling-sky.af_ZA.po ├── az │ ├── README.md │ └── falling-sky.az_AZ.po ├── ceb │ ├── README.md │ └── falling-sky.ceb_PH.po ├── cs │ ├── README.md │ └── falling-sky.cs_CZ.po ├── de │ ├── README.md │ └── falling-sky.de_DE.po ├── el │ ├── README.md │ └── falling-sky.el_GR.po ├── es-ES │ ├── README.md │ └── falling-sky.es_ES.po ├── es-VE │ └── README.md ├── fi │ ├── README.md │ └── falling-sky.fi_FI.po ├── fil │ ├── README.md │ └── falling-sky.fil_PH.po ├── fr │ ├── README.md │ └── falling-sky.fr_FR.po ├── hr │ ├── README.md │ └── falling-sky.hr_HR.po ├── hu │ ├── README.md │ └── falling-sky.hu_HU.po ├── it │ ├── README.md │ └── falling-sky.it_IT.po ├── ja │ ├── README.md │ └── falling-sky.ja_JP.po ├── ko │ ├── README.md │ └── falling-sky.ko_KR.po ├── nb │ ├── README.md │ └── falling-sky.nb_NO.po ├── nl │ ├── README.md │ └── falling-sky.nl_NL.po ├── pl │ ├── README.md │ └── falling-sky.pl_PL.po ├── pt-BR │ ├── README.md │ └── falling-sky.pt_BR.po ├── pt-PT │ └── README.md ├── ro │ ├── README.md │ └── falling-sky.ro_RO.po ├── ru │ ├── README.md │ └── falling-sky.ru_RU.po ├── sk │ ├── README.md │ └── falling-sky.sk_SK.po ├── sq │ ├── README.md │ └── falling-sky.sq_AL.po ├── sv-SE │ ├── README.md │ └── falling-sky.sv_SE.po ├── tl │ ├── README.md │ └── falling-sky.tl_PH.po ├── tr │ ├── README.md │ └── falling-sky.tr_TR.po ├── ur-PK │ └── README.md ├── zh-CN │ ├── README.md │ └── falling-sky.zh_CN.po └── zh-TW │ ├── README.md │ └── falling-sky.zh_TW.po ├── download.pl └── falling-sky.pot /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/i18n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/.github/workflows/i18n.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/.gitignore -------------------------------------------------------------------------------- /.ssh/known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/.ssh/known_hosts -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/falling-sky/source 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner00.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner01.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner02.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner03.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner04.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner05.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner06.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner07.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner08.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner09.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner10.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner11.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner12.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner13.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner14.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner15.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner16.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner17.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner18.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner19.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner20.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner21.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner22.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons-spinner/spinner23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons-spinner/spinner23.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/X.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/cloud.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/favicon.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/hires_attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/hires_attention.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/hires_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/hires_bad.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/hires_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/hires_grey.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/hires_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/hires_info.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/hires_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/hires_link.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/hires_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/hires_offline.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/hires_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/hires_ok.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/information.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/knob_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/knob_blue.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/knob_gray 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/knob_gray 2.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/knob_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/knob_gray.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/knob_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/knob_green.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/knob_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/knob_orange.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/knob_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/knob_red.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/knob_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/knob_yellow.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/link.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/test.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/there is no cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/there is no cloud.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/triangle_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/triangle_red.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/triangle_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/triangle_yellow.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/warning.png -------------------------------------------------------------------------------- /icons/export/falling-sky-icons/√.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/export/falling-sky-icons/√.png -------------------------------------------------------------------------------- /icons/falling-sky-icons-spinner.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/falling-sky-icons-spinner.graffle -------------------------------------------------------------------------------- /icons/falling-sky-icons.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/falling-sky-icons.graffle -------------------------------------------------------------------------------- /icons/website_icon.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/icons/website_icon.graffle -------------------------------------------------------------------------------- /images/6to4-broker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/6to4-broker.png -------------------------------------------------------------------------------- /images/6to4-tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/6to4-tunnel.png -------------------------------------------------------------------------------- /images/6to4-v4only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/6to4-v4only.png -------------------------------------------------------------------------------- /images/Language-Icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons.zip -------------------------------------------------------------------------------- /images/Language-Icons/Language-Icon-Fireworks [Converted].eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/Language-Icon-Fireworks [Converted].eps -------------------------------------------------------------------------------- /images/Language-Icons/Language-Icon-Fireworks.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/Language-Icon-Fireworks.ai -------------------------------------------------------------------------------- /images/Language-Icons/Language-Icon-Fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/Language-Icon-Fireworks.png -------------------------------------------------------------------------------- /images/Language-Icons/LanguageIcon-Big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/LanguageIcon-Big.jpg -------------------------------------------------------------------------------- /images/Language-Icons/icon128px-exported-black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon128px-exported-black.jpg -------------------------------------------------------------------------------- /images/Language-Icons/icon128px-exported-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon128px-exported-black.png -------------------------------------------------------------------------------- /images/Language-Icons/icon128px-exported-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon128px-exported-blue.jpg -------------------------------------------------------------------------------- /images/Language-Icons/icon128px-exported-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon128px-exported-red.jpg -------------------------------------------------------------------------------- /images/Language-Icons/icon128px-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon128px-gradient.png -------------------------------------------------------------------------------- /images/Language-Icons/icon128px-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon128px-red.png -------------------------------------------------------------------------------- /images/Language-Icons/icon128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon128px.png -------------------------------------------------------------------------------- /images/Language-Icons/icon20x24px-Fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon20x24px-Fireworks.png -------------------------------------------------------------------------------- /images/Language-Icons/icon20x24px-exported-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon20x24px-exported-transparent.png -------------------------------------------------------------------------------- /images/Language-Icons/icon20x24px-exported.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/Language-Icons/icon20x24px-exported.jpg -------------------------------------------------------------------------------- /images/README-IMAGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/README-IMAGES.txt -------------------------------------------------------------------------------- /images/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/asc.gif -------------------------------------------------------------------------------- /images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/bg.gif -------------------------------------------------------------------------------- /images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/blank.gif -------------------------------------------------------------------------------- /images/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/desc.gif -------------------------------------------------------------------------------- /images/faq_pmtud_6in4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/faq_pmtud_6in4.png -------------------------------------------------------------------------------- /images/faq_pmtud_6in4in4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/faq_pmtud_6in4in4.png -------------------------------------------------------------------------------- /images/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon-128.png -------------------------------------------------------------------------------- /images/favicon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon-152.png -------------------------------------------------------------------------------- /images/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon-16.png -------------------------------------------------------------------------------- /images/favicon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon-167.png -------------------------------------------------------------------------------- /images/favicon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon-180.png -------------------------------------------------------------------------------- /images/favicon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon-192.png -------------------------------------------------------------------------------- /images/favicon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon-256.png -------------------------------------------------------------------------------- /images/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon-32.png -------------------------------------------------------------------------------- /images/favicon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon-64.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/hires_attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/hires_attention.png -------------------------------------------------------------------------------- /images/hires_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/hires_bad.png -------------------------------------------------------------------------------- /images/hires_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/hires_grey.png -------------------------------------------------------------------------------- /images/hires_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/hires_info.png -------------------------------------------------------------------------------- /images/hires_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/hires_link.png -------------------------------------------------------------------------------- /images/hires_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/hires_offline.png -------------------------------------------------------------------------------- /images/hires_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/hires_ok.png -------------------------------------------------------------------------------- /images/hires_spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/hires_spinner.gif -------------------------------------------------------------------------------- /images/icon128px-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/icon128px-red.png -------------------------------------------------------------------------------- /images/icon_987.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/icon_987.license -------------------------------------------------------------------------------- /images/icon_987.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/icon_987.png -------------------------------------------------------------------------------- /images/icon_987.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/icon_987.svg -------------------------------------------------------------------------------- /images/icon_987_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/icon_987_blue.png -------------------------------------------------------------------------------- /images/icon_987_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/icon_987_red.png -------------------------------------------------------------------------------- /images/ipv4_nat_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/ipv4_nat_1.jpg -------------------------------------------------------------------------------- /images/ipv4_nat_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/ipv4_nat_2.jpg -------------------------------------------------------------------------------- /images/knob_buttons_toolbar_icons_by_itweek.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/knob_buttons_toolbar_icons_by_itweek.zip -------------------------------------------------------------------------------- /images/knob_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/knob_green.png -------------------------------------------------------------------------------- /images/knob_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/knob_info.png -------------------------------------------------------------------------------- /images/knob_valid_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/knob_valid_green.png -------------------------------------------------------------------------------- /images/ood-add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/ood-add.sh -------------------------------------------------------------------------------- /images/ood_0c8a4e1a.png: -------------------------------------------------------------------------------- 1 | favicon-16.png -------------------------------------------------------------------------------- /images/ood_9166521b.png: -------------------------------------------------------------------------------- 1 | favicon-16.png -------------------------------------------------------------------------------- /images/ood_b35131cf.png: -------------------------------------------------------------------------------- 1 | favicon-16.png -------------------------------------------------------------------------------- /images/ood_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/ood_readme.txt -------------------------------------------------------------------------------- /images/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/snapshot.png -------------------------------------------------------------------------------- /images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/spinner.gif -------------------------------------------------------------------------------- /images/website_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/images/website_icon.svg -------------------------------------------------------------------------------- /sites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/Makefile -------------------------------------------------------------------------------- /sites/disabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/disabled.json -------------------------------------------------------------------------------- /sites/mirrors-with-stats-enabled.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/mirrors-with-stats-enabled.pl -------------------------------------------------------------------------------- /sites/old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/old -------------------------------------------------------------------------------- /sites/old.dir/parse-sites-yaml.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/old.dir/parse-sites-yaml.pl -------------------------------------------------------------------------------- /sites/old.dir/send-notification: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/old.dir/send-notification -------------------------------------------------------------------------------- /sites/old.dir/sites.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/old.dir/sites.yaml -------------------------------------------------------------------------------- /sites/parse-sites.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/parse-sites.go -------------------------------------------------------------------------------- /sites/sites.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/sites.disabled -------------------------------------------------------------------------------- /sites/sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/sites.json -------------------------------------------------------------------------------- /sites/versions/sites.json: -------------------------------------------------------------------------------- 1 | ../sites.json -------------------------------------------------------------------------------- /sites/versions/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/sites/versions/versions.go -------------------------------------------------------------------------------- /support/add-build-date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/support/add-build-date -------------------------------------------------------------------------------- /support/crowdin-cli.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/support/crowdin-cli.jar -------------------------------------------------------------------------------- /support/fold_end.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/support/fold_end.sh -------------------------------------------------------------------------------- /support/fold_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/support/fold_start.sh -------------------------------------------------------------------------------- /templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/Makefile -------------------------------------------------------------------------------- /templates/apache/DEADJOE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/apache/DEADJOE -------------------------------------------------------------------------------- /templates/apache/config.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/apache/config.js.example -------------------------------------------------------------------------------- /templates/apache/dot.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/apache/dot.htaccess -------------------------------------------------------------------------------- /templates/apache/images-nc.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/apache/images-nc.htaccess -------------------------------------------------------------------------------- /templates/apache/images.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/apache/images.htaccess -------------------------------------------------------------------------------- /templates/apache/ip.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/apache/ip.htaccess -------------------------------------------------------------------------------- /templates/apache/private.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/apache/private.js.example -------------------------------------------------------------------------------- /templates/apache/vhost-long.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/apache/vhost-long.conf.example -------------------------------------------------------------------------------- /templates/apache/vhost-short.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/apache/vhost-short.conf.example -------------------------------------------------------------------------------- /templates/css/inc/color-schemes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/css/inc/color-schemes.inc -------------------------------------------------------------------------------- /templates/css/inc/list-nav.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/css/inc/list-nav.inc -------------------------------------------------------------------------------- /templates/css/inc/tabbox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/css/inc/tabbox.inc -------------------------------------------------------------------------------- /templates/css/inc/tablesorter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/css/inc/tablesorter.inc -------------------------------------------------------------------------------- /templates/css/inc/tabnav.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/css/inc/tabnav.inc -------------------------------------------------------------------------------- /templates/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/css/index.css -------------------------------------------------------------------------------- /templates/html/6to4.html: -------------------------------------------------------------------------------- 1 | [% PROCESS "faq_6to4.html" %] 2 | -------------------------------------------------------------------------------- /templates/html/attributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/attributions.html -------------------------------------------------------------------------------- /templates/html/broken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/broken.html -------------------------------------------------------------------------------- /templates/html/comcast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/comcast.html -------------------------------------------------------------------------------- /templates/html/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq.html -------------------------------------------------------------------------------- /templates/html/faq/6to4_sucks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/6to4_sucks.inc -------------------------------------------------------------------------------- /templates/html/faq/broken_6to4.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/broken_6to4.inc -------------------------------------------------------------------------------- /templates/html/faq/broken_bogon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/broken_bogon.inc -------------------------------------------------------------------------------- /templates/html/faq/broken_disable.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/broken_disable.inc -------------------------------------------------------------------------------- /templates/html/faq/broken_tunnelbroker.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/broken_tunnelbroker.inc -------------------------------------------------------------------------------- /templates/html/faq/broken_ula.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/broken_ula.inc -------------------------------------------------------------------------------- /templates/html/faq/broken_unexpected.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/broken_unexpected.inc -------------------------------------------------------------------------------- /templates/html/faq/brokers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/brokers.inc -------------------------------------------------------------------------------- /templates/html/faq/dontfeelbad.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/dontfeelbad.inc -------------------------------------------------------------------------------- /templates/html/faq/dontstress.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/dontstress.inc -------------------------------------------------------------------------------- /templates/html/faq/find_ip.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/find_ip.inc -------------------------------------------------------------------------------- /templates/html/faq/intro_js.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/intro_js.inc -------------------------------------------------------------------------------- /templates/html/faq/matrix_os.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/matrix_os.inc -------------------------------------------------------------------------------- /templates/html/faq/nothingwillbreak.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/nothingwillbreak.inc -------------------------------------------------------------------------------- /templates/html/faq/plugins_firefox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/plugins_firefox.inc -------------------------------------------------------------------------------- /templates/html/faq/plugins_tryagain.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/plugins_tryagain.inc -------------------------------------------------------------------------------- /templates/html/faq/simple_test.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/simple_test.inc -------------------------------------------------------------------------------- /templates/html/faq/staycurrent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/staycurrent.inc -------------------------------------------------------------------------------- /templates/html/faq/teredo_advice.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/teredo_advice.inc -------------------------------------------------------------------------------- /templates/html/faq/teredo_iponly.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/teredo_iponly.inc -------------------------------------------------------------------------------- /templates/html/faq/unable_to_see_ipv6.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/unable_to_see_ipv6.inc -------------------------------------------------------------------------------- /templates/html/faq/whyipv6.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq/whyipv6.inc -------------------------------------------------------------------------------- /templates/html/faq_6to4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_6to4.html -------------------------------------------------------------------------------- /templates/html/faq_avoids_ipv6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_avoids_ipv6.html -------------------------------------------------------------------------------- /templates/html/faq_broken_aaaa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_broken_aaaa.html -------------------------------------------------------------------------------- /templates/html/faq_browser_plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_browser_plugins.html -------------------------------------------------------------------------------- /templates/html/faq_disable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_disable.html -------------------------------------------------------------------------------- /templates/html/faq_firefox_plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_firefox_plugins.html -------------------------------------------------------------------------------- /templates/html/faq_helpdesk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_helpdesk.html -------------------------------------------------------------------------------- /templates/html/faq_ipv4_only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_ipv4_only.html -------------------------------------------------------------------------------- /templates/html/faq_no_ipv4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_no_ipv4.html -------------------------------------------------------------------------------- /templates/html/faq_no_ipv6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_no_ipv6.html -------------------------------------------------------------------------------- /templates/html/faq_pmtud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_pmtud.html -------------------------------------------------------------------------------- /templates/html/faq_teredo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_teredo.html -------------------------------------------------------------------------------- /templates/html/faq_teredo_minimum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_teredo_minimum.html -------------------------------------------------------------------------------- /templates/html/faq_tunnel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_tunnel.html -------------------------------------------------------------------------------- /templates/html/faq_tunnel_6rd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_tunnel_6rd.html -------------------------------------------------------------------------------- /templates/html/faq_v6ns_bad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_v6ns_bad.html -------------------------------------------------------------------------------- /templates/html/faq_whyipv6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/faq_whyipv6.html -------------------------------------------------------------------------------- /templates/html/ignore.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/html/inc/broken_options.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/broken_options.inc -------------------------------------------------------------------------------- /templates/html/inc/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/debug.inc -------------------------------------------------------------------------------- /templates/html/inc/disclaimer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/disclaimer.inc -------------------------------------------------------------------------------- /templates/html/inc/fixup_html.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/fixup_html.inc -------------------------------------------------------------------------------- /templates/html/inc/fixup_html_minimal.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/fixup_html_minimal.inc -------------------------------------------------------------------------------- /templates/html/inc/footer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/footer.inc -------------------------------------------------------------------------------- /templates/html/inc/header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/header.inc -------------------------------------------------------------------------------- /templates/html/inc/index.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/index.inc -------------------------------------------------------------------------------- /templates/html/inc/js_required.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/js_required.inc -------------------------------------------------------------------------------- /templates/html/inc/list-nav.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/list-nav.inc -------------------------------------------------------------------------------- /templates/html/inc/logo-bottom.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/logo-bottom.inc -------------------------------------------------------------------------------- /templates/html/inc/sites.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/sites.inc -------------------------------------------------------------------------------- /templates/html/inc/tunnel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/inc/tunnel.inc -------------------------------------------------------------------------------- /templates/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/index.html -------------------------------------------------------------------------------- /templates/html/locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/locale.html -------------------------------------------------------------------------------- /templates/html/main/helpdesk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/main/helpdesk.inc -------------------------------------------------------------------------------- /templates/html/main/mail-language.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/main/mail-language.inc -------------------------------------------------------------------------------- /templates/html/main/mail.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/main/mail.inc -------------------------------------------------------------------------------- /templates/html/main/progress_bar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/main/progress_bar.inc -------------------------------------------------------------------------------- /templates/html/main/results.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/main/results.inc -------------------------------------------------------------------------------- /templates/html/main/tab_debug.inc: -------------------------------------------------------------------------------- 1 | [% PROCESS "inc/debug.inc" %] 2 | -------------------------------------------------------------------------------- /templates/html/main/tab_helpdesk.inc: -------------------------------------------------------------------------------- 1 | [% PROCESS "main/helpdesk.inc" %] 2 | -------------------------------------------------------------------------------- /templates/html/main/tab_mail.inc: -------------------------------------------------------------------------------- 1 | [% PROCESS "main/mail.inc" %] 2 | -------------------------------------------------------------------------------- /templates/html/main/tab_main.inc: -------------------------------------------------------------------------------- 1 | [% PROCESS "main/results.inc" %] 2 | -------------------------------------------------------------------------------- /templates/html/main/tab_other_sites.inc: -------------------------------------------------------------------------------- 1 | [% PROCESS "inc/sites.inc" %] 2 | -------------------------------------------------------------------------------- /templates/html/main/tab_tech.inc: -------------------------------------------------------------------------------- 1 | [% PROCESS "main/tech.inc" %] 2 | -------------------------------------------------------------------------------- /templates/html/main/tab_tests.inc: -------------------------------------------------------------------------------- 1 | [% PROCESS "main/tests.inc" %] 2 | -------------------------------------------------------------------------------- /templates/html/main/tabnav.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/main/tabnav.inc -------------------------------------------------------------------------------- /templates/html/main/tabs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/main/tabs.inc -------------------------------------------------------------------------------- /templates/html/main/tech.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/main/tech.inc -------------------------------------------------------------------------------- /templates/html/main/tests.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/main/tests.inc -------------------------------------------------------------------------------- /templates/html/mirrors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/mirrors.html -------------------------------------------------------------------------------- /templates/html/mirrorstats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/mirrorstats.html -------------------------------------------------------------------------------- /templates/html/mission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/mission.html -------------------------------------------------------------------------------- /templates/html/nat.html: -------------------------------------------------------------------------------- 1 | [% PROCESS "faq_avoids_ipv6.html" %] 2 | -------------------------------------------------------------------------------- /templates/html/neg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/neg.html -------------------------------------------------------------------------------- /templates/html/pop-pr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/pop-pr.html -------------------------------------------------------------------------------- /templates/html/simple_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/simple_test.html -------------------------------------------------------------------------------- /templates/html/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/source.html -------------------------------------------------------------------------------- /templates/html/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/stats.html -------------------------------------------------------------------------------- /templates/html/version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/html/version.html -------------------------------------------------------------------------------- /templates/js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/Makefile -------------------------------------------------------------------------------- /templates/js/ext/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/NOTICE -------------------------------------------------------------------------------- /templates/js/ext/dygraph-combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/dygraph-combined.js -------------------------------------------------------------------------------- /templates/js/ext/dygraph-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/dygraph-sync.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-1.10.2.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-1.12.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-1.12.2.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-1.12.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-1.12.2.min.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-1.4.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-1.4.2.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-1.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-1.5.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-1.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-1.5.min.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-migrate-1.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-migrate-1.2.1.js -------------------------------------------------------------------------------- /templates/js/ext/jquery-migrate-1.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery-migrate-1.2.1.min.js -------------------------------------------------------------------------------- /templates/js/ext/jquery.jsonp-2.0.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery.jsonp-2.0.2.js -------------------------------------------------------------------------------- /templates/js/ext/jquery.md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery.md5.js -------------------------------------------------------------------------------- /templates/js/ext/jquery.tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery.tablesorter.js -------------------------------------------------------------------------------- /templates/js/ext/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /templates/js/ext/json3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/json3.min.js -------------------------------------------------------------------------------- /templates/js/ext/mootools-1.2.4-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/mootools-1.2.4-core.js -------------------------------------------------------------------------------- /templates/js/ext/mootools-core-1.3-full-compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/mootools-core-1.3-full-compat.js -------------------------------------------------------------------------------- /templates/js/ext/mootools-core-1.4.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/ext/mootools-core-1.4.5.js -------------------------------------------------------------------------------- /templates/js/inc/GIGO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/GIGO.js -------------------------------------------------------------------------------- /templates/js/inc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/Makefile -------------------------------------------------------------------------------- /templates/js/inc/builtin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/builtin.js -------------------------------------------------------------------------------- /templates/js/inc/checkresults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/checkresults.js -------------------------------------------------------------------------------- /templates/js/inc/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/console.js -------------------------------------------------------------------------------- /templates/js/inc/dumpObj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/dumpObj.js -------------------------------------------------------------------------------- /templates/js/inc/fake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/fake.js -------------------------------------------------------------------------------- /templates/js/inc/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/form.js -------------------------------------------------------------------------------- /templates/js/inc/gettext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/gettext.js -------------------------------------------------------------------------------- /templates/js/inc/helpdesk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/helpdesk.js -------------------------------------------------------------------------------- /templates/js/inc/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/init.js -------------------------------------------------------------------------------- /templates/js/inc/jquery.js: -------------------------------------------------------------------------------- 1 | [% PROCESS "ext/jquery-1.10.2.min.js" %] 2 | -------------------------------------------------------------------------------- /templates/js/inc/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/main.js -------------------------------------------------------------------------------- /templates/js/inc/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/messages.js -------------------------------------------------------------------------------- /templates/js/inc/mirrorconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/mirrorconfig.js -------------------------------------------------------------------------------- /templates/js/inc/onerror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/onerror.js -------------------------------------------------------------------------------- /templates/js/inc/ood.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/ood.js -------------------------------------------------------------------------------- /templates/js/inc/pretty: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | uglifyjs -b --comments all 3 | -------------------------------------------------------------------------------- /templates/js/inc/pulse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/pulse.js -------------------------------------------------------------------------------- /templates/js/inc/scores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/scores.js -------------------------------------------------------------------------------- /templates/js/inc/show_os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/show_os.js -------------------------------------------------------------------------------- /templates/js/inc/sites_check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/sites_check.js -------------------------------------------------------------------------------- /templates/js/inc/sym_helpdesk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/sym_helpdesk.js -------------------------------------------------------------------------------- /templates/js/inc/sym_primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/sym_primary.js -------------------------------------------------------------------------------- /templates/js/inc/symptoms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/symptoms.js -------------------------------------------------------------------------------- /templates/js/inc/tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/tablesorter.js -------------------------------------------------------------------------------- /templates/js/inc/tabnav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/tabnav.js -------------------------------------------------------------------------------- /templates/js/inc/text-generated/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/text-generated/README -------------------------------------------------------------------------------- /templates/js/inc/toyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/toyaml -------------------------------------------------------------------------------- /templates/js/inc/transparent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/transparent.js -------------------------------------------------------------------------------- /templates/js/inc/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/inc/versions.js -------------------------------------------------------------------------------- /templates/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/index.js -------------------------------------------------------------------------------- /templates/js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/js/stats.js -------------------------------------------------------------------------------- /templates/php/Makefile: -------------------------------------------------------------------------------- 1 | 2 | beta: 3 | cd .. && make beta 4 | -------------------------------------------------------------------------------- /templates/php/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/php/comment.php -------------------------------------------------------------------------------- /templates/php/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/php/common.php -------------------------------------------------------------------------------- /templates/php/common5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/php/common5.php -------------------------------------------------------------------------------- /templates/php/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/php/errors.php -------------------------------------------------------------------------------- /templates/php/survey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/php/survey.php -------------------------------------------------------------------------------- /templates/php/survey5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/templates/php/survey5.php -------------------------------------------------------------------------------- /translations/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/Makefile -------------------------------------------------------------------------------- /translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/README.md -------------------------------------------------------------------------------- /translations/compare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/compare -------------------------------------------------------------------------------- /translations/crowdin.yaml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/crowdin.yaml.enc -------------------------------------------------------------------------------- /translations/crowdin.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/crowdin.yaml.example -------------------------------------------------------------------------------- /translations/dl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/README.md -------------------------------------------------------------------------------- /translations/dl/af/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/af/README.md -------------------------------------------------------------------------------- /translations/dl/af/falling-sky.af_ZA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/af/falling-sky.af_ZA.po -------------------------------------------------------------------------------- /translations/dl/az/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/az/README.md -------------------------------------------------------------------------------- /translations/dl/az/falling-sky.az_AZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/az/falling-sky.az_AZ.po -------------------------------------------------------------------------------- /translations/dl/ceb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ceb/README.md -------------------------------------------------------------------------------- /translations/dl/ceb/falling-sky.ceb_PH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ceb/falling-sky.ceb_PH.po -------------------------------------------------------------------------------- /translations/dl/cs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/cs/README.md -------------------------------------------------------------------------------- /translations/dl/cs/falling-sky.cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/cs/falling-sky.cs_CZ.po -------------------------------------------------------------------------------- /translations/dl/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/de/README.md -------------------------------------------------------------------------------- /translations/dl/de/falling-sky.de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/de/falling-sky.de_DE.po -------------------------------------------------------------------------------- /translations/dl/el/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/el/README.md -------------------------------------------------------------------------------- /translations/dl/el/falling-sky.el_GR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/el/falling-sky.el_GR.po -------------------------------------------------------------------------------- /translations/dl/es-ES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/es-ES/README.md -------------------------------------------------------------------------------- /translations/dl/es-ES/falling-sky.es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/es-ES/falling-sky.es_ES.po -------------------------------------------------------------------------------- /translations/dl/es-VE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/es-VE/README.md -------------------------------------------------------------------------------- /translations/dl/fi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/fi/README.md -------------------------------------------------------------------------------- /translations/dl/fi/falling-sky.fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/fi/falling-sky.fi_FI.po -------------------------------------------------------------------------------- /translations/dl/fil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/fil/README.md -------------------------------------------------------------------------------- /translations/dl/fil/falling-sky.fil_PH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/fil/falling-sky.fil_PH.po -------------------------------------------------------------------------------- /translations/dl/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/fr/README.md -------------------------------------------------------------------------------- /translations/dl/fr/falling-sky.fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/fr/falling-sky.fr_FR.po -------------------------------------------------------------------------------- /translations/dl/hr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/hr/README.md -------------------------------------------------------------------------------- /translations/dl/hr/falling-sky.hr_HR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/hr/falling-sky.hr_HR.po -------------------------------------------------------------------------------- /translations/dl/hu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/hu/README.md -------------------------------------------------------------------------------- /translations/dl/hu/falling-sky.hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/hu/falling-sky.hu_HU.po -------------------------------------------------------------------------------- /translations/dl/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/it/README.md -------------------------------------------------------------------------------- /translations/dl/it/falling-sky.it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/it/falling-sky.it_IT.po -------------------------------------------------------------------------------- /translations/dl/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ja/README.md -------------------------------------------------------------------------------- /translations/dl/ja/falling-sky.ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ja/falling-sky.ja_JP.po -------------------------------------------------------------------------------- /translations/dl/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ko/README.md -------------------------------------------------------------------------------- /translations/dl/ko/falling-sky.ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ko/falling-sky.ko_KR.po -------------------------------------------------------------------------------- /translations/dl/nb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/nb/README.md -------------------------------------------------------------------------------- /translations/dl/nb/falling-sky.nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/nb/falling-sky.nb_NO.po -------------------------------------------------------------------------------- /translations/dl/nl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/nl/README.md -------------------------------------------------------------------------------- /translations/dl/nl/falling-sky.nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/nl/falling-sky.nl_NL.po -------------------------------------------------------------------------------- /translations/dl/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/pl/README.md -------------------------------------------------------------------------------- /translations/dl/pl/falling-sky.pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/pl/falling-sky.pl_PL.po -------------------------------------------------------------------------------- /translations/dl/pt-BR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/pt-BR/README.md -------------------------------------------------------------------------------- /translations/dl/pt-BR/falling-sky.pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/pt-BR/falling-sky.pt_BR.po -------------------------------------------------------------------------------- /translations/dl/pt-PT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/pt-PT/README.md -------------------------------------------------------------------------------- /translations/dl/ro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ro/README.md -------------------------------------------------------------------------------- /translations/dl/ro/falling-sky.ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ro/falling-sky.ro_RO.po -------------------------------------------------------------------------------- /translations/dl/ru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ru/README.md -------------------------------------------------------------------------------- /translations/dl/ru/falling-sky.ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ru/falling-sky.ru_RU.po -------------------------------------------------------------------------------- /translations/dl/sk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/sk/README.md -------------------------------------------------------------------------------- /translations/dl/sk/falling-sky.sk_SK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/sk/falling-sky.sk_SK.po -------------------------------------------------------------------------------- /translations/dl/sq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/sq/README.md -------------------------------------------------------------------------------- /translations/dl/sq/falling-sky.sq_AL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/sq/falling-sky.sq_AL.po -------------------------------------------------------------------------------- /translations/dl/sv-SE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/sv-SE/README.md -------------------------------------------------------------------------------- /translations/dl/sv-SE/falling-sky.sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/sv-SE/falling-sky.sv_SE.po -------------------------------------------------------------------------------- /translations/dl/tl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/tl/README.md -------------------------------------------------------------------------------- /translations/dl/tl/falling-sky.tl_PH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/tl/falling-sky.tl_PH.po -------------------------------------------------------------------------------- /translations/dl/tr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/tr/README.md -------------------------------------------------------------------------------- /translations/dl/tr/falling-sky.tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/tr/falling-sky.tr_TR.po -------------------------------------------------------------------------------- /translations/dl/ur-PK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/ur-PK/README.md -------------------------------------------------------------------------------- /translations/dl/zh-CN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/zh-CN/README.md -------------------------------------------------------------------------------- /translations/dl/zh-CN/falling-sky.zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/zh-CN/falling-sky.zh_CN.po -------------------------------------------------------------------------------- /translations/dl/zh-TW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/zh-TW/README.md -------------------------------------------------------------------------------- /translations/dl/zh-TW/falling-sky.zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/dl/zh-TW/falling-sky.zh_TW.po -------------------------------------------------------------------------------- /translations/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/download.pl -------------------------------------------------------------------------------- /translations/falling-sky.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falling-sky/source/HEAD/translations/falling-sky.pot --------------------------------------------------------------------------------