--- a/AmmoTypes.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/AmmoTypes.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -1,6 +1,6 @@
#summary List of all ammo types
-For a current list of ammo types look at http://code.google.com/p/hedgewars/source/browse/hedgewars/uTypes.pas#146
+For a current list of ammo types look at http://hg.hedgewars.org/hedgewars/file/default/hedgewars/uTypes.pas#l146
|| *Variable* || *Ammo type* ||
|| amNothing || _pseudo-ammo type for the absence of a real ammo_ ||
--- a/CommandLineOptions.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/CommandLineOptions.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -55,7 +55,7 @@
* _Linux_: {{{~/.hedgewars}}}
* _Mac OS X_: {{{~/Library/Application Support/Hedgewars}}}
---raw-quality value is determined by combining the values of the flags you wish to enable. Up to date variables (in hex) are online. [http://code.google.com/p/hedgewars/source/browse/hedgewars/uConsts.pas#62 uConsts.pas]
+--raw-quality value is determined by combining the values of the flags you wish to enable. Up to date variables (in hex) are online. [http://hg.hedgewars.org/hedgewars/file/default/hedgewars/uConsts.pas#l62 uConsts.pas]
* {{{qLowRes = 1}}}
* {{{rqBlurryLand = 2}}}
@@ -75,7 +75,7 @@
There are some internal commands, such as --internal, --port [int], that are not meant for command line usage.
If you want to get your hands dirty and see how the engine interprets commands, you can check out the source code.
-[http://code.google.com/p/hedgewars/source/browse/hedgewars/ArgParsers.inc ArgParsers.inc]
+[http://hg.hedgewars.org/hedgewars/file/default/hedgewars/ArgParsers.inc ArgParsers.inc]
----
--- a/EngineProtocol.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/EngineProtocol.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -14,7 +14,7 @@
= Map Preview =
Frontend needs to generate a preview of the map that is going to be used in game; there is no handshaking.
-Files in which this protocol is implemented: [http://code.google.com/p/hedgewars/source/browse/QTfrontend/hwmap.cpp hwmapp.cpp], [http://code.google.com/p/hedgewars/source/browse/project_files/HedgewarsMobile/Classes/MapConfigViewController.m MapConfigViewController.m]
+Files in which this protocol is implemented: [http://hg.hedgewars.org/hedgewars/file/default/QTfrontend/hwmap.cpp hwmapp.cpp], [http://hg.hedgewars.org/hedgewars/file/default/project_files/HedgewarsMobile/Classes/MapConfigViewController.m MapConfigViewController.m]
== Protocol ==
|| *Frontend* || *Engine* || *Format* ||
--- a/GearMessages.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/GearMessages.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -21,4 +21,4 @@
|| `gmDelete` || ??? ||
|| `gmAllStoppable` || Bitwise OR of `gmLeft`, `gmRight`, `gmUp`, `gmDown` `gmAttack` and `gmPrecise` ||
-See https://code.google.com/p/hedgewars/source/browse/hedgewars/uConsts.pas#235 for a current list.
\ No newline at end of file
+See https://code.google.com/p/hedgewars/source/browse/hedgewars/uConsts.pas#l235 for a current list.
\ No newline at end of file
--- a/GearTypes.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/GearTypes.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -116,6 +116,6 @@
}}}
For a current list of the gears look at `hedgewars/uTypes.pas` at
the `TGearType` enumeration.
-http://code.google.com/p/hedgewars/source/browse/hedgewars/uTypes.pas#92
+http://hg.hedgewars.org/hedgewars/file/default/hedgewars/uTypes.pas#l92
Note: `gtBomb` and `gtShell` were named `gtAmmo_Bomb` and `gtAmmo_Grenade` before 0.9.14.
\ No newline at end of file
--- a/LuaLibraries.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/LuaLibraries.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -59,7 +59,7 @@
This will kill all hogs if a target is destroyed.
To see a commented example of the tracker in use by a script you can look at
-[http://code.google.com/p/hedgewars/source/browse/share/hedgewars/Data/Scripts/Multiplayer/Random_Weapon.lua Random Weapons].
+[http://hg.hedgewars.org/hedgewars/file/default/share/hedgewars/Data/Scripts/Multiplayer/Random_Weapon.lua Random Weapons].
== Tracking functions ==
--- a/Sounds.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/Sounds.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -1,6 +1,6 @@
#summary List of all sounds
-For a current list of sounds look at hedgewars/uTypes.pas http://code.google.com/p/hedgewars/source/browse/hedgewars/uTypes.pas#120
+For a current list of sounds look at hedgewars/uTypes.pas http://hg.hedgewars.org/hedgewars/file/default/hedgewars/uTypes.pas#l120
{{{
TSound = (sndNone,
sndGrenadeImpact, sndExplosion, sndThrowPowerUp, sndThrowRelease,
--- a/Sprites.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/Sprites.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -1,7 +1,7 @@
#summary List of sprite indices
For a current list of sprites, see uTypes.pas
-http://code.google.com/p/hedgewars/source/browse/hedgewars/uTypes.pas#49
+http://hg.hedgewars.org/hedgewars/file/default/hedgewars/uTypes.pas#l49
= Sprite List =
--- a/States.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/States.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -27,4 +27,4 @@
|| `gstFrozen` || Gear is frozen. ||
|| `gstNoGravity` || ||
-See http://code.google.com/p/hedgewars/source/browse/hedgewars/uConsts.pas#195 for a current list).
\ No newline at end of file
+See http://hg.hedgewars.org/hedgewars/file/default/hedgewars/uConsts.pas#l195 for a current list).
\ No newline at end of file
--- a/VisualGearTypes.wiki Sat Sep 05 21:51:47 2015 +0200
+++ b/VisualGearTypes.wiki Sun Sep 06 05:35:40 2015 +0200
@@ -1,7 +1,7 @@
#summary List of all visual gear types
For a current list of the gears look at hedgewars/uTypes.pas at
-the TVisualGearType enumeration. http://code.google.com/p/hedgewars/source/browse/hedgewars/uTypes.pas#108
+the TVisualGearType enumeration. http://hg.hedgewars.org/hedgewars/file/default/hedgewars/uTypes.pas#l108
{{{
TVisualGearType = (vgtFlake, vgtCloud, vgtExplPart, vgtExplPart2, vgtFire,
vgtSmallDamageTag, vgtTeamHealthSorter, vgtSpeechBubble, vgtBubble,