Skip to content

Commit

Permalink
Revert "Update wiki.libsdl.org urls to libsdl-org/SDL/wiki (#4069)"
Browse files Browse the repository at this point in the history
This reverts commit 82a96af.

We ended up not moving to GitHub's wiki after all and built
https://github.com/icculus/ghwikipp to fill the gap...since the wiki is
back at https://wiki.libsdl.org/, put back the original URLs.
  • Loading branch information
icculus committed Apr 1, 2021
1 parent fa81883 commit 2542977
Show file tree
Hide file tree
Showing 17 changed files with 214 additions and 214 deletions.
4 changes: 2 additions & 2 deletions INSTALL.txt
Expand Up @@ -5,7 +5,7 @@ To compile and install SDL:
* Read ./docs/README-visualc.md

Windows with gcc, either native or cross-compiling:
* Read the FAQ at https://github.com/libsdl-org/SDL/wiki/FAQWindows
* Read the FAQ at https://wiki.libsdl.org/moin.fcg/FAQWindows
* Run './configure; make; make install'

Mac OS X with Xcode:
Expand All @@ -27,7 +27,7 @@ To compile and install SDL:
* Read docs/README-cmake.md

2. Look at the example programs in ./test, and check out the online
documentation at https://github.com/libsdl-org/SDL/wiki/
documentation at https://wiki.libsdl.org/

3. Join the SDL developer mailing list by sending E-mail to
sdl-request@libsdl.org
Expand Down
2 changes: 1 addition & 1 deletion TODO.txt
@@ -1,5 +1,5 @@
Future work roadmap:
* https://github.com/libsdl-org/SDL/wiki/Roadmap
* http://wiki.libsdl.org/moin.cgi/Roadmap

* Check 1.2 revisions:
3554 - Need to resolve semantics for locking keys on different platforms
Expand Down
2 changes: 1 addition & 1 deletion docs/README-git.md
Expand Up @@ -15,5 +15,5 @@ If you are building SDL via configure, you will need to run autogen.sh
before running configure.

There is a web interface to the Git repository at:
https://github.com/libsdl-org/SDL/
http://github.com/libsdl-org/SDL/

2 changes: 1 addition & 1 deletion docs/README-platforms.md
Expand Up @@ -4,5 +4,5 @@ Platforms
We maintain the list of supported platforms on our wiki now, and how to
build and install SDL for those platforms:

https://github.com/libsdl-org/SDL/wiki/Installation
https://wiki.libsdl.org/Installation

2 changes: 1 addition & 1 deletion docs/README.md
Expand Up @@ -27,7 +27,7 @@ The best way to learn how to use SDL is to check out the header files in
the "include" subdirectory and the programs in the "test" subdirectory.
The header files and test programs are well commented and always up to date.

More documentation and FAQs are available online at [the wiki](https://github.com/libsdl-org/SDL/wiki/)
More documentation and FAQs are available online at [the wiki](http://wiki.libsdl.org/)

- [Android](README-android.md)
- [CMake](README-cmake.md)
Expand Down
50 changes: 25 additions & 25 deletions test/testautomation_audio.c
Expand Up @@ -59,8 +59,8 @@ void SDLCALL _audio_testCallback(void *userdata, Uint8 *stream, int len)
/**
* \brief Stop and restart audio subsystem
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_QuitSubSystem
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_InitSubSystem
* \sa https://wiki.libsdl.org/SDL_QuitSubSystem
* \sa https://wiki.libsdl.org/SDL_InitSubSystem
*/
int audio_quitInitAudioSubSystem()
{
Expand All @@ -77,8 +77,8 @@ int audio_quitInitAudioSubSystem()
/**
* \brief Start and stop audio directly
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_InitAudio
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_QuitAudio
* \sa https://wiki.libsdl.org/SDL_InitAudio
* \sa https://wiki.libsdl.org/SDL_QuitAudio
*/
int audio_initQuitAudio()
{
Expand Down Expand Up @@ -131,10 +131,10 @@ int audio_initQuitAudio()
/**
* \brief Start, open, close and stop audio
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_InitAudio
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_OpenAudio
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_CloseAudio
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_QuitAudio
* \sa https://wiki.libsdl.org/SDL_InitAudio
* \sa https://wiki.libsdl.org/SDL_OpenAudio
* \sa https://wiki.libsdl.org/SDL_CloseAudio
* \sa https://wiki.libsdl.org/SDL_QuitAudio
*/
int audio_initOpenCloseQuitAudio()
{
Expand Down Expand Up @@ -220,7 +220,7 @@ int audio_initOpenCloseQuitAudio()
/**
* \brief Pause and unpause audio
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_PauseAudio
* \sa https://wiki.libsdl.org/SDL_PauseAudio
*/
int audio_pauseUnpauseAudio()
{
Expand Down Expand Up @@ -340,8 +340,8 @@ int audio_pauseUnpauseAudio()
/**
* \brief Enumerate and name available audio devices (output and capture).
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_GetNumAudioDevices
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_GetAudioDeviceName
* \sa https://wiki.libsdl.org/SDL_GetNumAudioDevices
* \sa https://wiki.libsdl.org/SDL_GetAudioDeviceName
*/
int audio_enumerateAndNameAudioDevices()
{
Expand Down Expand Up @@ -398,8 +398,8 @@ int audio_enumerateAndNameAudioDevices()
/**
* \brief Negative tests around enumeration and naming of audio devices.
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_GetNumAudioDevices
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_GetAudioDeviceName
* \sa https://wiki.libsdl.org/SDL_GetNumAudioDevices
* \sa https://wiki.libsdl.org/SDL_GetAudioDeviceName
*/
int audio_enumerateAndNameAudioDevicesNegativeTests()
{
Expand Down Expand Up @@ -445,8 +445,8 @@ int audio_enumerateAndNameAudioDevicesNegativeTests()
/**
* \brief Checks available audio driver names.
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_GetNumAudioDrivers
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_GetAudioDriver
* \sa https://wiki.libsdl.org/SDL_GetNumAudioDrivers
* \sa https://wiki.libsdl.org/SDL_GetAudioDriver
*/
int audio_printAudioDrivers()
{
Expand Down Expand Up @@ -478,7 +478,7 @@ int audio_printAudioDrivers()
/**
* \brief Checks current audio driver name with initialized audio.
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_GetCurrentAudioDriver
* \sa https://wiki.libsdl.org/SDL_GetCurrentAudioDriver
*/
int audio_printCurrentAudioDriver()
{
Expand Down Expand Up @@ -510,7 +510,7 @@ int _audioFrequencies[] = { 11025, 22050, 44100, 48000 };
/**
* \brief Builds various audio conversion structures
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_BuildAudioCVT
* \sa https://wiki.libsdl.org/SDL_BuildAudioCVT
*/
int audio_buildAudioCVT()
{
Expand Down Expand Up @@ -574,7 +574,7 @@ int audio_buildAudioCVT()
/**
* \brief Checkes calls with invalid input to SDL_BuildAudioCVT
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_BuildAudioCVT
* \sa https://wiki.libsdl.org/SDL_BuildAudioCVT
*/
int audio_buildAudioCVTNegative()
{
Expand Down Expand Up @@ -669,7 +669,7 @@ int audio_buildAudioCVTNegative()
/**
* \brief Checks current audio status.
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_GetAudioStatus
* \sa https://wiki.libsdl.org/SDL_GetAudioStatus
*/
int audio_getAudioStatus()
{
Expand All @@ -690,7 +690,7 @@ int audio_getAudioStatus()
/**
* \brief Opens, checks current audio status, and closes a device.
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_GetAudioStatus
* \sa https://wiki.libsdl.org/SDL_GetAudioStatus
*/
int audio_openCloseAndGetAudioStatus()
{
Expand Down Expand Up @@ -748,8 +748,8 @@ int audio_openCloseAndGetAudioStatus()
/**
* \brief Locks and unlocks open audio device.
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_LockAudioDevice
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_UnlockAudioDevice
* \sa https://wiki.libsdl.org/SDL_LockAudioDevice
* \sa https://wiki.libsdl.org/SDL_UnlockAudioDevice
*/
int audio_lockUnlockOpenAudioDevice()
{
Expand Down Expand Up @@ -811,8 +811,8 @@ int audio_lockUnlockOpenAudioDevice()
/**
* \brief Convert audio using various conversion structures
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_BuildAudioCVT
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_ConvertAudio
* \sa https://wiki.libsdl.org/SDL_BuildAudioCVT
* \sa https://wiki.libsdl.org/SDL_ConvertAudio
*/
int audio_convertAudio()
{
Expand Down Expand Up @@ -910,7 +910,7 @@ int audio_convertAudio()
/**
* \brief Opens, checks current connected status, and closes a device.
*
* \sa https://github.com/libsdl-org/SDL/wiki/SDL_AudioDeviceConnected
* \sa https://wiki.libsdl.org/SDL_AudioDeviceConnected
*/
int audio_openCloseAudioDeviceConnected()
{
Expand Down
12 changes: 6 additions & 6 deletions test/testautomation_clipboard.c
Expand Up @@ -16,7 +16,7 @@
* \brief Check call to SDL_HasClipboardText
*
* \sa
* https://github.com/libsdl-org/SDL/wiki/SDL_HasClipboardText
* http://wiki.libsdl.org/moin.cgi/SDL_HasClipboardText
*/
int
clipboard_testHasClipboardText(void *arg)
Expand All @@ -31,7 +31,7 @@ clipboard_testHasClipboardText(void *arg)
* \brief Check call to SDL_GetClipboardText
*
* \sa
* https://github.com/libsdl-org/SDL/wiki/SDL_GetClipboardText
* http://wiki.libsdl.org/moin.cgi/SDL_GetClipboardText
*/
int
clipboard_testGetClipboardText(void *arg)
Expand All @@ -48,7 +48,7 @@ clipboard_testGetClipboardText(void *arg)
/**
* \brief Check call to SDL_SetClipboardText
* \sa
* https://github.com/libsdl-org/SDL/wiki/SDL_SetClipboardText
* http://wiki.libsdl.org/moin.cgi/SDL_SetClipboardText
*/
int
clipboard_testSetClipboardText(void *arg)
Expand Down Expand Up @@ -77,9 +77,9 @@ clipboard_testSetClipboardText(void *arg)
/**
* \brief End-to-end test of SDL_xyzClipboardText functions
* \sa
* https://github.com/libsdl-org/SDL/wiki/SDL_HasClipboardText
* https://github.com/libsdl-org/SDL/wiki/SDL_GetClipboardText
* https://github.com/libsdl-org/SDL/wiki/SDL_SetClipboardText
* http://wiki.libsdl.org/moin.cgi/SDL_HasClipboardText
* http://wiki.libsdl.org/moin.cgi/SDL_GetClipboardText
* http://wiki.libsdl.org/moin.cgi/SDL_SetClipboardText
*/
int
clipboard_testClipboardTextFunctions(void *arg)
Expand Down
12 changes: 6 additions & 6 deletions test/testautomation_events.c
Expand Up @@ -42,8 +42,8 @@ int SDLCALL _events_sampleNullEventFilter(void *userdata, SDL_Event *event)
/**
* @brief Test pumping and peeking events.
*
* @sa https://github.com/libsdl-org/SDL/wiki/SDL_PumpEvents
* @sa https://github.com/libsdl-org/SDL/wiki/SDL_PollEvent
* @sa http://wiki.libsdl.org/moin.cgi/SDL_PumpEvents
* @sa http://wiki.libsdl.org/moin.cgi/SDL_PollEvent
*/
int
events_pushPumpAndPollUserevent(void *arg)
Expand Down Expand Up @@ -76,8 +76,8 @@ events_pushPumpAndPollUserevent(void *arg)
/**
* @brief Adds and deletes an event watch function with NULL userdata
*
* @sa https://github.com/libsdl-org/SDL/SDL_AddEventWatch
* @sa https://github.com/libsdl-org/SDL/SDL_DelEventWatch
* @sa http://wiki.libsdl.org/moin.cgi/SDL_AddEventWatch
* @sa http://wiki.libsdl.org/moin.cgi/SDL_DelEventWatch
*
*/
int
Expand Down Expand Up @@ -126,8 +126,8 @@ events_addDelEventWatch(void *arg)
/**
* @brief Adds and deletes an event watch function with userdata
*
* @sa https://github.com/libsdl-org/SDL/wiki/SDL_AddEventWatch
* @sa https://github.com/libsdl-org/SDL/wiki/SDL_DelEventWatch
* @sa http://wiki.libsdl.org/moin.cgi/SDL_AddEventWatch
* @sa http://wiki.libsdl.org/moin.cgi/SDL_DelEventWatch
*
*/
int
Expand Down

0 comments on commit 2542977

Please sign in to comment.