diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 12dc412e6a..96578a2c84 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -4,7 +4,7 @@ # Pull Request -[Please see these instructions for adding a pull request](http://habitica.wikia.com/wiki/Using_Your_Local_Install_to_Modify_Habitica%27s_Website_and_API) +[Please see these instructions for adding a pull request](http://habitica.fandom.com/wiki/Using_Your_Local_Install_to_Modify_Habitica%27s_Website_and_API) # Requesting a feature @@ -12,4 +12,4 @@ Habitica uses [Trello](https://trello.com/b/EpoYEYod/habitica) to track feature # Contributing Code -See [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica#Coders_.28Web_.26_Mobile.29) +See [Contributing to Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica#Coders_.28Web_.26_Mobile.29) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 22e922a148..5b694dc790 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,4 @@ -[//]: # (Note: See http://habitica.wikia.com/wiki/Using_Your_Local_Install_to_Modify_Habitica%27s_Website_and_API for more info) +[//]: # (Note: See http://habitica.fandom.com/wiki/Using_Your_Local_Install_to_Modify_Habitica%27s_Website_and_API for more info) [//]: # (Put Issue # here, if applicable. This will automatically close the issue if your PR is merged in) Fixes put_#_and_issue_numer_here diff --git a/README.md b/README.md index 8bc94b0f07..a2ea0a211f 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,6 @@ Habitica [![Build Status](https://travis-ci.org/HabitRPG/habitica.svg?branch=dev We need more programmers! Your assistance will be greatly appreciated. -For an introduction to the technologies used and how the software is organized, refer to [Guidance for Blacksmiths](http://habitica.wikia.com/wiki/Guidance_for_Blacksmiths). +For an introduction to the technologies used and how the software is organized, refer to [Guidance for Blacksmiths](http://habitica.fandom.com/wiki/Guidance_for_Blacksmiths). -To set up a local install of Habitica for development and testing on various platforms, see [Setting up Habitica Locally](http://habitica.wikia.com/wiki/Setting_up_Habitica_Locally). +To set up a local install of Habitica for development and testing on various platforms, see [Setting up Habitica Locally](http://habitica.fandom.com/wiki/Setting_up_Habitica_Locally). diff --git a/VAGRANT.md b/VAGRANT.md index 05a9731b36..e25c738951 100644 --- a/VAGRANT.md +++ b/VAGRANT.md @@ -8,4 +8,4 @@ minimal dependencies on the developer's local platform. It can be used on a variety of systems including Windows, Mac OS X, and Linux. Instructions for using the Habitica Vagrant environment are in -[Setting up Habitica Locally](http://habitica.wikia.com/wiki/Setting_up_Habitica_Locally). +[Setting up Habitica Locally](http://habitica.fandom.com/wiki/Setting_up_Habitica_Locally). diff --git a/migrations/archive/2017/20170111_announce_collection_quest_change_in_parties.js b/migrations/archive/2017/20170111_announce_collection_quest_change_in_parties.js index 19bda0bd77..07abd4fa8a 100644 --- a/migrations/archive/2017/20170111_announce_collection_quest_change_in_parties.js +++ b/migrations/archive/2017/20170111_announce_collection_quest_change_in_parties.js @@ -19,7 +19,7 @@ const Timer = require('./utils/timer'); const connectToDb = require('./utils/connect').connectToDb; const closeDb = require('./utils/connect').closeDb; -const message = '`This party\'s collection quest has been made easier! For details, refer to http://habitica.wikia.com/wiki/User_blog:LadyAlys/Collection_Quests_are_Now_Easier`'; +const message = '`This party\'s collection quest has been made easier! For details, refer to http://habitica.fandom.com/wiki/User_blog:LadyAlys/Collection_Quests_are_Now_Easier`'; const timer = new Timer(); diff --git a/test/README.md b/test/README.md index 455fba407d..92dac576b6 100644 --- a/test/README.md +++ b/test/README.md @@ -1 +1 @@ -For information about writing and running tests, see [Using Your Local Install to Modify Habitica's Website and API](http://habitica.wikia.com/wiki/Using_Your_Local_Install_to_Modify_Habitica%27s_Website_and_API). +For information about writing and running tests, see [Using Your Local Install to Modify Habitica's Website and API](http://habitica.fandom.com/wiki/Using_Your_Local_Install_to_Modify_Habitica%27s_Website_and_API). diff --git a/vagrant_scripts/vagrant.sh b/vagrant_scripts/vagrant.sh index 6ba50ec623..7f9f90d8c7 100644 --- a/vagrant_scripts/vagrant.sh +++ b/vagrant_scripts/vagrant.sh @@ -65,7 +65,7 @@ apt-get install -qq ntp echo Installing nvm, node and global node modules... /vagrant/vagrant_scripts/install_node.sh -echo "'vagrant up' is finished. Continue with the instructions at http://habitica.wikia.com/wiki/Setting_up_Habitica_Locally" +echo "'vagrant up' is finished. Continue with the instructions at http://habitica.fandom.com/wiki/Setting_up_Habitica_Locally" # Uncomment both lines to autostart the habitica server when provisioning # echo Starting Habitica server... diff --git a/website/client/README.md b/website/client/README.md index 2e617c0146..435b1f5c1e 100644 --- a/website/client/README.md +++ b/website/client/README.md @@ -1,5 +1,5 @@ # Running -For information about installing and running Habitica locally, see [Setting up Habitica Locally](http://habitica.wikia.com/wiki/Setting_up_Habitica_Locally). +For information about installing and running Habitica locally, see [Setting up Habitica Locally](http://habitica.fandom.com/wiki/Setting_up_Habitica_Locally). # Preparation Reading - Vue 2 (https://vuejs.org) @@ -18,4 +18,4 @@ The project is developed directly in the `develop` branch as long as we'll be ab So far most of the work has been on the template, so there's no complex logic to understand. The only thing I would suggest you to read about is Vuex for data management: it's basically a Flux implementation: there's a central store that hold the data for the entire app, and every change to the data must happen through an action, the data cannot be mutated directly. -For further resources, see [Guidance for Blacksmiths](http://habitica.wikia.com/wiki/Guidance_for_Blacksmiths), and in particular the ["Website Technology Stack" section](http://habitica.wikia.com/wiki/Guidance_for_Blacksmiths#Website_Technology_Stack). +For further resources, see [Guidance for Blacksmiths](http://habitica.fandom.com/wiki/Guidance_for_Blacksmiths), and in particular the ["Website Technology Stack" section](http://habitica.fandom.com/wiki/Guidance_for_Blacksmiths#Website_Technology_Stack). diff --git a/website/client/components/achievements/newStuff.vue b/website/client/components/achievements/newStuff.vue index 7129f2a329..98b4ccefdd 100644 --- a/website/client/components/achievements/newStuff.vue +++ b/website/client/components/achievements/newStuff.vue @@ -9,7 +9,7 @@ .modal-body .static-view(v-html='html') .modal-footer - a.btn.btn-info(href='http://habitica.wikia.com/wiki/Whats_New', target='_blank') {{ this.$t('newsArchive') }} + a.btn.btn-info(href='http://habitica.fandom.com/wiki/Whats_New', target='_blank') {{ this.$t('newsArchive') }} button.btn.btn-secondary(@click='tellMeLater()') {{ this.$t('tellMeLater') }} button.btn.btn-warning(@click='dismissAlert();') {{ this.$t('dismissAlert') }} diff --git a/website/client/components/appFooter.vue b/website/client/components/appFooter.vue index bd821ce71b..0859dc691c 100644 --- a/website/client/components/appFooter.vue +++ b/website/client/components/appFooter.vue @@ -21,7 +21,7 @@ li router-link(to='/static/faq') {{ $t('FAQ') }} li - a(href='http://habitica.wikia.com/wiki/Whats_New', target='_blank') {{ $t('oldNews') }} + a(href='http://habitica.fandom.com/wiki/Whats_New', target='_blank') {{ $t('oldNews') }} li router-link(to='/static/merch') {{ $t('merch') }} li @@ -55,7 +55,7 @@ li a(:href="getDataDisplayToolUrl", target='_blank') {{ $t('dataDisplayTool') }} li - a(href='http://habitica.wikia.com/wiki/Guidance_for_Blacksmiths', target='_blank') {{ $t('guidanceForBlacksmiths') }} + a(href='http://habitica.fandom.com/wiki/Guidance_for_Blacksmiths', target='_blank') {{ $t('guidanceForBlacksmiths') }} li a(href='http://devs.habitica.com/', target='_blank') {{ $t('devBlog') }} .col-6.social @@ -73,7 +73,7 @@ .svg-icon.heart(v-html="icons.heart") .text {{ $t('companyDonate') }} .btn.btn-contribute(v-else) - a(href='http://habitica.wikia.com/wiki/Contributing_to_Habitica', target='_blank') + a(href='http://habitica.fandom.com/wiki/Contributing_to_Habitica', target='_blank') .svg-icon.heart(v-html="icons.heart") .text {{ $t('companyContribute') }} .row diff --git a/website/client/components/groups/tavern.vue b/website/client/components/groups/tavern.vue index eb4d3634d0..cf157f98b9 100644 --- a/website/client/components/groups/tavern.vue +++ b/website/client/components/groups/tavern.vue @@ -112,7 +112,7 @@ li a(href='', v-html="$t('glossary')") li - a(href='http://habitica.wikia.com/wiki/Habitica_Wiki', v-once) {{ $t('wiki') }} + a(href='http://habitica.fandom.com/wiki/Habitica_Wiki', v-once) {{ $t('wiki') }} li a(href='https://oldgods.net/habitrpg/habitrpg_user_data_display.html', v-once) {{ $t('dataDisplayTool') }} li diff --git a/website/client/components/header/menu.vue b/website/client/components/header/menu.vue index ed0fe4986e..7186b1ee3b 100644 --- a/website/client/components/header/menu.vue +++ b/website/client/components/header/menu.vue @@ -54,8 +54,8 @@ div router-link.topbar-dropdown-item.dropdown-item(to="/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac") {{ $t('reportBug') }} router-link.topbar-dropdown-item.dropdown-item(to="/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a") {{ $t('askAQuestion') }} a.topbar-dropdown-item.dropdown-item(href="https://trello.com/c/odmhIqyW/440-read-first-table-of-contents", target='_blank') {{ $t('requestAF') }} - a.topbar-dropdown-item.dropdown-item(href="http://habitica.wikia.com/wiki/Contributing_to_Habitica", target='_blank') {{ $t('contributing') }} - a.topbar-dropdown-item.dropdown-item(href="http://habitica.wikia.com/wiki/Habitica_Wiki", target='_blank') {{ $t('wiki') }} + a.topbar-dropdown-item.dropdown-item(href="http://habitica.fandom.com/wiki/Contributing_to_Habitica", target='_blank') {{ $t('contributing') }} + a.topbar-dropdown-item.dropdown-item(href="http://habitica.fandom.com/wiki/Habitica_Wiki", target='_blank') {{ $t('wiki') }} a.topbar-dropdown-item.dropdown-item(@click='modForm()') {{ $t('contactForm') }} .currency-tray.form-inline .item-with-icon(v-if="userHourglasses > 0") diff --git a/website/client/components/static/faq.vue b/website/client/components/static/faq.vue index e2ce08aa0c..7a8ca6792d 100644 --- a/website/client/components/static/faq.vue +++ b/website/client/components/static/faq.vue @@ -80,7 +80,7 @@ // linkStart: '[', // linkEnd: '](/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)', // }, - // "webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the <%= linkStart %>Habitica Help guild<%= linkEnd %>! We're happy to help." + // "webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), come ask in the <%= linkStart %>Habitica Help guild<%= linkEnd %>! We're happy to help." }; }, methods: { diff --git a/website/client/components/tasks/taskModal.vue b/website/client/components/tasks/taskModal.vue index 9e66829d30..f4777f84ce 100644 --- a/website/client/components/tasks/taskModal.vue +++ b/website/client/components/tasks/taskModal.vue @@ -20,7 +20,7 @@ label.d-flex.align-items-center.justify-content-between(v-once) span {{ $t('notes') }} small(v-once) - a(target="_blank", href="http://habitica.wikia.com/wiki/Markdown_Cheat_Sheet") {{ $t('markdownHelpLink') }} + a(target="_blank", href="http://habitica.fandom.com/wiki/Markdown_Cheat_Sheet") {{ $t('markdownHelpLink') }} textarea.form-control(v-model="task.notes", rows="3") .task-modal-content(@click="handleClick($event)") diff --git a/website/client/components/world-boss/worldBossInfoModal.vue b/website/client/components/world-boss/worldBossInfoModal.vue index 0b5651f76c..af418b7b30 100644 --- a/website/client/components/world-boss/worldBossInfoModal.vue +++ b/website/client/components/world-boss/worldBossInfoModal.vue @@ -18,7 +18,7 @@ .info {{ $t(bullet) }} .row .col-12.text-center - a(href='http://habitica.wikia.com/wiki/World_Bosses' target='_blank').footer-link {{ $t('worldBossLink') }} + a(href='http://habitica.fandom.com/wiki/World_Bosses' target='_blank').footer-link {{ $t('worldBossLink') }}