Ver Fonte

fix links

mitm001 há 5 anos atrás
pai
commit
cfa92d2c67

+ 4 - 4
docs/modules/ROOT/pages/jme3/advanced/open_game_finder.adoc

@@ -10,15 +10,15 @@ ifdef::env-github,env-browser[:outfilesuffix: .adoc]
 
 The Open Game Finder (OGF) by Mark Schrijver can be plugged into any Java game. OGF enables you to find other people playing the same multiplayer game, and join them.
 
-*  Homepage: link:http://code.google.com/p/open-game-finder/[http://code.google.com/p/open-game-finder/]
-*  Documentation: link:http://code.google.com/p/open-game-finder/w/list[http://code.google.com/p/open-game-finder/w/list]
+*  Homepage: link:https://code.google.com/archive/p/open-game-finder/[https://code.google.com/archive/p/open-game-finder/]
+*  Documentation: link:https://code.google.com/archive/p/open-game-finder/w/list[https://code.google.com/archive/p/open-game-finder/w/list]
 
 Both on the client and the server side of OGF is written purely in Java. OGF has a pluggable architecture and comes with a full set of plugins to get the job done. You can add your own plugins, or replace existing plugins to make them more in line with your game. OGF uses NiftyGUI as the main +++<abbr title="Graphical User Interface">GUI</abbr>+++ plugin.
 
 
 == Installation
 
-.  Go to link:http://code.google.com/p/open-game-finder/downloads/list[http://code.google.com/p/open-game-finder/downloads/list]
+.  Go to link:https://code.google.com/archive/p/open-game-finder/downloads/list[https://code.google.com/archive/p/open-game-finder/downloads/list]
 .  Download Client-1.0-bin.zip and Server-1.0-bin.zip
 .  Unzip the two files to, for example, your jMonkeyProjects directory.
 
@@ -89,7 +89,7 @@ The chat window shows a list of all users logged in to the server. Logged-in use
 == Connecting to a Game
 
 Q: I want to gather players using the OGF client to connect to the game server. How do I start my multiplayer game? +
-A: The following sample code demos the typical use case: link:http://code.google.com/p/open-game-finder/source/browse/OGF/TRUNK/Client/src/main/java/com/ractoc/opengamefinder/client/OGFClientStartup.java[OGFClientStartup.java]
+A: The following sample code demos the typical use case: link:https://code.google.com/archive/p/open-game-finder/source/browse/OGF/TRUNK/Client/src/main/java/com/ractoc/opengamefinder/client/OGFClientStartup.java[OGFClientStartup.java]
 +
 In a JME3 Application's init method: