Skip to content

Commit 47e9ce8

Browse files
ddavisonandreastt
authored andcommitted
all: update links to Github repo
Signed-off-by: Andreas Tolfsen <[email protected]>
1 parent a2df95f commit 47e9ce8

File tree

18 files changed

+34
-36
lines changed

18 files changed

+34
-36
lines changed

Diff for: ide/main/src/content/editor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ function Editor(window) {
221221
//Samit: Enh: display a webpage on the first start (and also on locale change if the version string is localised)
222222
var versionString = Editor.getString('selenium-ide.version');
223223
if (!this.app.options.currentVersion || this.app.options.currentVersion != versionString) {
224-
openTabOrWindow('https://github.com/SeleniumHQ/selenium/wiki/SeIDEReleaseNotes');
224+
openTabOrWindow('https://github.com/SeleniumHQ/selenium/wiki/SeIDE-Release-Notes');
225225
Preferences.setAndSave(this.app.options, 'currentVersion', versionString);
226226
}
227227

Diff for: ide/main/src/content/selenium-ide-common.xul

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ limitations under the License.
250250
<menuitem label="&helpSearchIssues.label;" oncommand="openTabOrWindow('https://github.com/SeleniumHQ/selenium/issues')"/>
251251
<menuitem label="&helpSubmitDiagInfo.label;" oncommand="window.editor.submitDiagInfo();"/>
252252
<menuseparator/>
253-
<menuitem label="&helpReleaseNotes.label;" oncommand="openTabOrWindow('https://github.com/SeleniumHQ/selenium/wiki/SeIDEReleaseNotes')"/>
253+
<menuitem label="&helpReleaseNotes.label;" oncommand="openTabOrWindow('https://github.com/SeleniumHQ/selenium/wiki/SeIDE-Release-Notes')"/>
254254
<menuitem label="&helpBlog.label;" oncommand="openTabOrWindow('http://seleniumhq.wordpress.com/')"/>
255255
<menuitem label="&helpWebsite.label;" oncommand="openTabOrWindow('http://seleniumhq.org/')"/>
256256
</menupopup>

Diff for: javascript/atoms/error.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
/**
1717
* @fileoverview Utilities for working with errors as defined by WebDriver's
18-
* wire protocol: http://code.google.com/p/selenium/wiki/JsonWireProtocol.
18+
* wire protocol: https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
1919
*/
2020

2121
goog.provide('bot.Error');
@@ -24,7 +24,7 @@ goog.provide('bot.ErrorCode');
2424

2525
/**
2626
* Error codes from the WebDriver wire protocol:
27-
* http://code.google.com/p/selenium/wiki/JsonWireProtocol#Response_Status_Codes
27+
* https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#response-status-codes
2828
*
2929
* @enum {number}
3030
*/
@@ -71,7 +71,7 @@ bot.ErrorCode = {
7171
/**
7272
* Error extension that includes error status codes from the WebDriver wire
7373
* protocol:
74-
* http://code.google.com/p/selenium/wiki/JsonWireProtocol#Response_Status_Codes
74+
* https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#response-status-codes
7575
*
7676
* @param {!bot.ErrorCode} code The error's status code.
7777
* @param {string=} opt_message Optional error message.

Diff for: javascript/atoms/inject.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ goog.require('goog.userAgent');
4545
* of a DOM element.
4646
* @typedef {{ELEMENT: string}}
4747
* @see bot.inject.ELEMENT_KEY
48-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
48+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
4949
*/
5050
bot.inject.JsonElement;
5151

@@ -64,7 +64,7 @@ bot.inject.JsonWindow;
6464
* Key used to identify DOM elements in the WebDriver wire protocol.
6565
* @type {string}
6666
* @const
67-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
67+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
6868
*/
6969
bot.inject.ELEMENT_KEY = 'ELEMENT';
7070

@@ -95,7 +95,7 @@ bot.inject.WINDOW_KEY = 'WINDOW';
9595
*
9696
* @param {*} value The value to make JSON friendly.
9797
* @return {*} The JSON friendly value.
98-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
98+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
9999
*/
100100
bot.inject.wrapValue = function(value) {
101101
switch (goog.typeOf(value)) {
@@ -383,7 +383,7 @@ bot.inject.executeAsyncScript = function(fn, args, timeout, onDone,
383383
* script.
384384
* @param {*} value The script result.
385385
* @return {{status:bot.ErrorCode,value:*}} The wrapped value.
386-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Responses
386+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#responses
387387
*/
388388
bot.inject.wrapResponse = function(value) {
389389
return {
@@ -398,7 +398,7 @@ bot.inject.wrapResponse = function(value) {
398398
* for transmission to the process that injected this script.
399399
* @param {Error} err The error to wrap.
400400
* @return {{status:bot.ErrorCode,value:*}} The wrapped error object.
401-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Failed_Commands
401+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#failed-commands
402402
*/
403403
bot.inject.wrapError = function(err) {
404404
// TODO: Parse stackTrace

Diff for: javascript/atoms/locators/locators.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ bot.locators.strategy;
4747
*
4848
* Note that the versions with spaces are synonyms for those without spaces,
4949
* and are specified at:
50-
* https://code.google.com/p/selenium/wiki/JsonWireProtocol
50+
* https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
5151
* @private {Object.<string,bot.locators.strategy>}
5252
* @const
5353
*/

Diff for: javascript/atoms/response.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
/**
1616
* @fileoverview Utilities for working with WebDriver response objects.
17-
* @see: http://code.google.com/p/selenium/wiki/JsonWireProtocol#Responses
17+
* @see: hhttps://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#responses
1818
*/
1919

2020
goog.provide('bot.response');
@@ -27,7 +27,7 @@ goog.require('bot.ErrorCode');
2727
/**
2828
* Type definition for a response object, as defined by the JSON wire protocol.
2929
* @typedef {{status: bot.ErrorCode, value: (*|{message: string})}}
30-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Responses
30+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#responses
3131
*/
3232
bot.response.ResponseObject;
3333

@@ -87,7 +87,7 @@ bot.response.createErrorResponse = function(error) {
8787
* check.
8888
* @return {!bot.response.ResponseObject} The checked response object.
8989
* @throws {bot.Error} If the response describes an error.
90-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Failed_Commands
90+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#failed-commands
9191
*/
9292
bot.response.checkResponse = function(responseObj) {
9393
var status = responseObj['status'];

Diff for: javascript/node/selenium-webdriver/ie.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var Level = {
6060

6161
/**
6262
* Option keys:
63-
* https://code.google.com/p/selenium/wiki/DesiredCapabilities#IE_specific
63+
* https://github.com/SeleniumHQ/selenium/wiki/DesiredCapabilities#ie-specific
6464
* @enum {string}
6565
*/
6666
var Key = {

Diff for: javascript/node/selenium-webdriver/remote/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ var ServiceOptions;
6262
* Manages the life and death of a native executable WebDriver server.
6363
*
6464
* It is expected that the driver server implements the
65-
* [WebDriver wire protocol](http://code.google.com/p/selenium/wiki/JsonWireProtocol).
65+
* https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol.
6666
* Furthermore, the managed server should support multiple concurrent sessions,
6767
* so that this class may be reused for multiple clients.
6868
*

Diff for: javascript/remote/ui/client.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ goog.inherits(remote.ui.Client, goog.Disposable);
100100
*
101101
* @type {!Array.<string>}
102102
* @const
103-
* @see http://code.google.com/p/selenium/wiki/DesiredCapabilities
103+
* @see https://github.com/SeleniumHQ/selenium/wiki/DesiredCapabilities
104104
*/
105105
remote.ui.Client.SUPPORTED_BROWSERS = [
106106
'android',

Diff for: javascript/remote/ui/openscriptdialog.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ remote.ui.OpenScriptDialog.prototype.disposeInternal = function() {
5656
/** @override */
5757
remote.ui.OpenScriptDialog.prototype.createContentDom = function() {
5858
var link = goog.dom.createDom(goog.dom.TagName.A, {
59-
'href': 'http://code.google.com/p/selenium/wiki/WebDriverJs',
59+
'href': 'https://github.com/SeleniumHQ/selenium/wiki/WebDriverJs',
6060
'target': '_blank'
6161
}, 'WebDriverJS');
6262

Diff for: javascript/remote/ui/serverinfo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ goog.require('goog.ui.Component');
2525
* as returned by the /status command handler.
2626
* @constructor
2727
* @extends {goog.ui.Component}
28-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#/status
28+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#status
2929
*/
3030
remote.ui.ServerInfo = function() {
3131
goog.base(this);

Diff for: javascript/safari-driver/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@
6161
</dict>
6262
</dict>
6363
<key>Website</key>
64-
<string>http://code.google.com/p/selenium</string>
64+
<string>https://github.com/SeleniumHQ/selenium</string>
6565
</dict>
6666
</plist>

Diff for: javascript/webdriver/atoms/element.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ webdriver.atoms.element.getText = function(element) {
274274
* @param {boolean=} opt_persistModifiers Whether modifier keys should remain
275275
* pressed when this function ends.
276276
* @see bot.action.type
277-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
277+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
278278
*/
279279
webdriver.atoms.element.type = function(
280280
element, keys, opt_keyboard, opt_persistModifiers) {

Diff for: javascript/webdriver/http/corsclient.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ goog.require('webdriver.http.Response');
5959
* @constructor
6060
* @implements {webdriver.http.Client}
6161
* @see <a href="http://www.w3.org/TR/cors/">CORS Spec</a>
62-
* @see <a href="http://code.google.com/p/selenium/wiki/JsonWireProtocol">
62+
* @see <a href="https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol">
6363
* JSON wire protocol</a>
6464
*/
6565
webdriver.http.CorsClient = function(url) {

Diff for: javascript/webdriver/webdriver.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ webdriver.WebDriver.acquireSession_ = function(
183183
* @return {!webdriver.promise.Promise.<?>} A promise that will resolve to the
184184
* input value's JSON representation.
185185
* @private
186-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
186+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
187187
*/
188188
webdriver.WebDriver.toWireValue_ = function(obj) {
189189
if (webdriver.promise.isPromise(obj)) {
@@ -277,7 +277,7 @@ webdriver.WebDriver.toWireValue_ = function(obj) {
277277
* parent of any unwrapped {@code webdriver.WebElement} values.
278278
* @param {*} value The value to convert.
279279
* @return {*} The converted value.
280-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
280+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
281281
* @private
282282
*/
283283
webdriver.WebDriver.fromWireValue_ = function(driver, value) {
@@ -1160,7 +1160,7 @@ webdriver.WebDriver.Options = function(driver) {
11601160
* secure: (boolean|undefined),
11611161
* expiry: (number|undefined)
11621162
* }}
1163-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Cookie_JSON_Object
1163+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#cookie-json-object
11641164
*/
11651165
webdriver.WebDriver.Options.Cookie;
11661166

@@ -1257,7 +1257,7 @@ webdriver.WebDriver.Options.prototype.deleteCookie = function(name) {
12571257
* @return {!webdriver.promise.Promise.<
12581258
* !Array.<webdriver.WebDriver.Options.Cookie>>} A promise that will be
12591259
* resolved with the cookies visible to the current page.
1260-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Cookie_JSON_Object
1260+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#cookie-json-object
12611261
*/
12621262
webdriver.WebDriver.Options.prototype.getCookies = function() {
12631263
return this.driver_.schedule(
@@ -1274,7 +1274,7 @@ webdriver.WebDriver.Options.prototype.getCookies = function() {
12741274
* @return {!webdriver.promise.Promise.<?webdriver.WebDriver.Options.Cookie>} A
12751275
* promise that will be resolved with the named cookie, or {@code null}
12761276
* if there is no such cookie.
1277-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Cookie_JSON_Object
1277+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#cookie-json-object
12781278
*/
12791279
webdriver.WebDriver.Options.prototype.getCookie = function(name) {
12801280
return this.getCookies().then(function(cookies) {
@@ -1717,7 +1717,7 @@ goog.inherits(webdriver.WebElement, webdriver.Serializable);
17171717
/**
17181718
* Wire protocol definition of a WebElement ID.
17191719
* @typedef {{ELEMENT: string}}
1720-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
1720+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
17211721
*/
17221722
webdriver.WebElement.Id;
17231723

@@ -1772,7 +1772,7 @@ webdriver.WebElement.prototype.getDriver = function() {
17721772
* @return {!webdriver.promise.Promise.<webdriver.WebElement.Id>} A promise
17731773
* that resolves to this element's JSON representation as defined by the
17741774
* WebDriver wire protocol.
1775-
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
1775+
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
17761776
*/
17771777
webdriver.WebElement.prototype.getId = function() {
17781778
return this.id_;

Diff for: py/docs/source/index.rst

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The `selenium` package is used automate web browser interaction from Python.
1414
+-----------+-----------------------------------------------------------------------------------+
1515
| **Docs**: | `selenium package API <http://selenium.googlecode.com/git/docs/api/py/api.html>`_ |
1616
+-----------+-----------------------------------------------------------------------------------+
17-
| **Dev**: | https://code.google.com/p/selenium/ |
17+
| **Dev**: | https://github.com/SeleniumHQ/Selenium |
1818
+-----------+-----------------------------------------------------------------------------------+
1919
| **PyPI**: | https://pypi.python.org/pypi/selenium |
2020
+-----------+-----------------------------------------------------------------------------------+
@@ -121,7 +121,5 @@ Use The Source Luke!
121121
View source code online:
122122

123123
+-----------+-------------------------------------------------------+
124-
| official: | https://code.google.com/p/selenium/source/browse/py |
125-
+-----------+-------------------------------------------------------+
126-
| mirror: | https://github.com/SeleniumHQ/selenium/tree/master/py |
124+
| official: | https://github.com/SeleniumHQ/selenium/tree/master/py |
127125
+-----------+-------------------------------------------------------+

Diff for: rb/CHANGES

+2-2
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ IE:
320320

321321
* Add Selenium::WebDriver::Window#maximize (#3489)
322322
* Safari:
323-
* New driver! See http://code.google.com/p/selenium/wiki/SafariDriver.
323+
* New driver! See https://github.com/SeleniumHQ/selenium/wiki/SafariDriver.
324324
* Firefox:
325325
* Significant stability improvements.
326326
* Native events support for Firefox 11
@@ -666,7 +666,7 @@ IE:
666666
0.2.0 (2011-04-22)
667667
==================
668668

669-
* Update Ruby bindings to use the rewritten Chrome driver (see http://code.google.com/p/selenium/wiki/ChromeDriver).
669+
* Update Ruby bindings to use the rewritten Chrome driver (see https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver).
670670
* Add deprecation warning for WebDriver::Element#value (use Element#attribute("value") instead).
671671
* Change the default timeout for Wait instances to 5 seconds.
672672
* Fix bug where locators would fail if Object.prototype had been modified.

Diff for: rb/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ JRuby and Rubinius.
1212

1313
* http://rubygems.org/gems/selenium-webdriver
1414
* http://selenium.googlecode.com/git/docs/api/rb/index.html
15-
* https://github.com/SeleniumHQ/selenium/wiki/RubyBindings
15+
* https://github.com/SeleniumHQ/selenium/wiki/Ruby-Bindings
1616
* https://github.com/SeleniumHQ/selenium/issues
1717

1818
## License

0 commit comments

Comments
 (0)