Skip to content

Commit

Permalink
all: update links to Github repo
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Tolfsen <ato@mozilla.com>
  • Loading branch information
ddavison authored and andreastt committed Mar 17, 2015
1 parent a2df95f commit 47e9ce8
Show file tree
Hide file tree
Showing 18 changed files with 34 additions and 36 deletions.
2 changes: 1 addition & 1 deletion ide/main/src/content/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ function Editor(window) {
//Samit: Enh: display a webpage on the first start (and also on locale change if the version string is localised)
var versionString = Editor.getString('selenium-ide.version');
if (!this.app.options.currentVersion || this.app.options.currentVersion != versionString) {
openTabOrWindow('https://github.com/SeleniumHQ/selenium/wiki/SeIDEReleaseNotes');
openTabOrWindow('https://github.com/SeleniumHQ/selenium/wiki/SeIDE-Release-Notes');
Preferences.setAndSave(this.app.options, 'currentVersion', versionString);
}

Expand Down
2 changes: 1 addition & 1 deletion ide/main/src/content/selenium-ide-common.xul
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ limitations under the License.
<menuitem label="&helpSearchIssues.label;" oncommand="openTabOrWindow('https://github.com/SeleniumHQ/selenium/issues')"/>
<menuitem label="&helpSubmitDiagInfo.label;" oncommand="window.editor.submitDiagInfo();"/>
<menuseparator/>
<menuitem label="&helpReleaseNotes.label;" oncommand="openTabOrWindow('https://github.com/SeleniumHQ/selenium/wiki/SeIDEReleaseNotes')"/>
<menuitem label="&helpReleaseNotes.label;" oncommand="openTabOrWindow('https://github.com/SeleniumHQ/selenium/wiki/SeIDE-Release-Notes')"/>
<menuitem label="&helpBlog.label;" oncommand="openTabOrWindow('http://seleniumhq.wordpress.com/')"/>
<menuitem label="&helpWebsite.label;" oncommand="openTabOrWindow('http://seleniumhq.org/')"/>
</menupopup>
Expand Down
6 changes: 3 additions & 3 deletions javascript/atoms/error.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

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

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

/**
* Error codes from the WebDriver wire protocol:
* http://code.google.com/p/selenium/wiki/JsonWireProtocol#Response_Status_Codes
* https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#response-status-codes
*
* @enum {number}
*/
Expand Down Expand Up @@ -71,7 +71,7 @@ bot.ErrorCode = {
/**
* Error extension that includes error status codes from the WebDriver wire
* protocol:
* http://code.google.com/p/selenium/wiki/JsonWireProtocol#Response_Status_Codes
* https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#response-status-codes
*
* @param {!bot.ErrorCode} code The error's status code.
* @param {string=} opt_message Optional error message.
Expand Down
10 changes: 5 additions & 5 deletions javascript/atoms/inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ goog.require('goog.userAgent');
* of a DOM element.
* @typedef {{ELEMENT: string}}
* @see bot.inject.ELEMENT_KEY
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
*/
bot.inject.JsonElement;

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

Expand Down Expand Up @@ -95,7 +95,7 @@ bot.inject.WINDOW_KEY = 'WINDOW';
*
* @param {*} value The value to make JSON friendly.
* @return {*} The JSON friendly value.
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
*/
bot.inject.wrapValue = function(value) {
switch (goog.typeOf(value)) {
Expand Down Expand Up @@ -383,7 +383,7 @@ bot.inject.executeAsyncScript = function(fn, args, timeout, onDone,
* script.
* @param {*} value The script result.
* @return {{status:bot.ErrorCode,value:*}} The wrapped value.
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Responses
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#responses
*/
bot.inject.wrapResponse = function(value) {
return {
Expand All @@ -398,7 +398,7 @@ bot.inject.wrapResponse = function(value) {
* for transmission to the process that injected this script.
* @param {Error} err The error to wrap.
* @return {{status:bot.ErrorCode,value:*}} The wrapped error object.
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Failed_Commands
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#failed-commands
*/
bot.inject.wrapError = function(err) {
// TODO: Parse stackTrace
Expand Down
2 changes: 1 addition & 1 deletion javascript/atoms/locators/locators.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ bot.locators.strategy;
*
* Note that the versions with spaces are synonyms for those without spaces,
* and are specified at:
* https://code.google.com/p/selenium/wiki/JsonWireProtocol
* https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
* @private {Object.<string,bot.locators.strategy>}
* @const
*/
Expand Down
6 changes: 3 additions & 3 deletions javascript/atoms/response.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

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

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

Expand Down Expand Up @@ -87,7 +87,7 @@ bot.response.createErrorResponse = function(error) {
* check.
* @return {!bot.response.ResponseObject} The checked response object.
* @throws {bot.Error} If the response describes an error.
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Failed_Commands
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#failed-commands
*/
bot.response.checkResponse = function(responseObj) {
var status = responseObj['status'];
Expand Down
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/ie.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ var Level = {

/**
* Option keys:
* https://code.google.com/p/selenium/wiki/DesiredCapabilities#IE_specific
* https://github.com/SeleniumHQ/selenium/wiki/DesiredCapabilities#ie-specific
* @enum {string}
*/
var Key = {
Expand Down
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/remote/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ var ServiceOptions;
* Manages the life and death of a native executable WebDriver server.
*
* It is expected that the driver server implements the
* [WebDriver wire protocol](http://code.google.com/p/selenium/wiki/JsonWireProtocol).
* https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol.
* Furthermore, the managed server should support multiple concurrent sessions,
* so that this class may be reused for multiple clients.
*
Expand Down
2 changes: 1 addition & 1 deletion javascript/remote/ui/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ goog.inherits(remote.ui.Client, goog.Disposable);
*
* @type {!Array.<string>}
* @const
* @see http://code.google.com/p/selenium/wiki/DesiredCapabilities
* @see https://github.com/SeleniumHQ/selenium/wiki/DesiredCapabilities
*/
remote.ui.Client.SUPPORTED_BROWSERS = [
'android',
Expand Down
2 changes: 1 addition & 1 deletion javascript/remote/ui/openscriptdialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ remote.ui.OpenScriptDialog.prototype.disposeInternal = function() {
/** @override */
remote.ui.OpenScriptDialog.prototype.createContentDom = function() {
var link = goog.dom.createDom(goog.dom.TagName.A, {
'href': 'http://code.google.com/p/selenium/wiki/WebDriverJs',
'href': 'https://github.com/SeleniumHQ/selenium/wiki/WebDriverJs',
'target': '_blank'
}, 'WebDriverJS');

Expand Down
2 changes: 1 addition & 1 deletion javascript/remote/ui/serverinfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ goog.require('goog.ui.Component');
* as returned by the /status command handler.
* @constructor
* @extends {goog.ui.Component}
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#/status
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#status
*/
remote.ui.ServerInfo = function() {
goog.base(this);
Expand Down
2 changes: 1 addition & 1 deletion javascript/safari-driver/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@
</dict>
</dict>
<key>Website</key>
<string>http://code.google.com/p/selenium</string>
<string>https://github.com/SeleniumHQ/selenium</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion javascript/webdriver/atoms/element.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ webdriver.atoms.element.getText = function(element) {
* @param {boolean=} opt_persistModifiers Whether modifier keys should remain
* pressed when this function ends.
* @see bot.action.type
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
*/
webdriver.atoms.element.type = function(
element, keys, opt_keyboard, opt_persistModifiers) {
Expand Down
2 changes: 1 addition & 1 deletion javascript/webdriver/http/corsclient.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ goog.require('webdriver.http.Response');
* @constructor
* @implements {webdriver.http.Client}
* @see <a href="http://www.w3.org/TR/cors/">CORS Spec</a>
* @see <a href="http://code.google.com/p/selenium/wiki/JsonWireProtocol">
* @see <a href="https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol">
* JSON wire protocol</a>
*/
webdriver.http.CorsClient = function(url) {
Expand Down
14 changes: 7 additions & 7 deletions javascript/webdriver/webdriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ webdriver.WebDriver.acquireSession_ = function(
* @return {!webdriver.promise.Promise.<?>} A promise that will resolve to the
* input value's JSON representation.
* @private
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
*/
webdriver.WebDriver.toWireValue_ = function(obj) {
if (webdriver.promise.isPromise(obj)) {
Expand Down Expand Up @@ -277,7 +277,7 @@ webdriver.WebDriver.toWireValue_ = function(obj) {
* parent of any unwrapped {@code webdriver.WebElement} values.
* @param {*} value The value to convert.
* @return {*} The converted value.
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
* @private
*/
webdriver.WebDriver.fromWireValue_ = function(driver, value) {
Expand Down Expand Up @@ -1160,7 +1160,7 @@ webdriver.WebDriver.Options = function(driver) {
* secure: (boolean|undefined),
* expiry: (number|undefined)
* }}
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Cookie_JSON_Object
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#cookie-json-object
*/
webdriver.WebDriver.Options.Cookie;

Expand Down Expand Up @@ -1257,7 +1257,7 @@ webdriver.WebDriver.Options.prototype.deleteCookie = function(name) {
* @return {!webdriver.promise.Promise.<
* !Array.<webdriver.WebDriver.Options.Cookie>>} A promise that will be
* resolved with the cookies visible to the current page.
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Cookie_JSON_Object
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#cookie-json-object
*/
webdriver.WebDriver.Options.prototype.getCookies = function() {
return this.driver_.schedule(
Expand All @@ -1274,7 +1274,7 @@ webdriver.WebDriver.Options.prototype.getCookies = function() {
* @return {!webdriver.promise.Promise.<?webdriver.WebDriver.Options.Cookie>} A
* promise that will be resolved with the named cookie, or {@code null}
* if there is no such cookie.
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Cookie_JSON_Object
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#cookie-json-object
*/
webdriver.WebDriver.Options.prototype.getCookie = function(name) {
return this.getCookies().then(function(cookies) {
Expand Down Expand Up @@ -1717,7 +1717,7 @@ goog.inherits(webdriver.WebElement, webdriver.Serializable);
/**
* Wire protocol definition of a WebElement ID.
* @typedef {{ELEMENT: string}}
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
*/
webdriver.WebElement.Id;

Expand Down Expand Up @@ -1772,7 +1772,7 @@ webdriver.WebElement.prototype.getDriver = function() {
* @return {!webdriver.promise.Promise.<webdriver.WebElement.Id>} A promise
* that resolves to this element's JSON representation as defined by the
* WebDriver wire protocol.
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
*/
webdriver.WebElement.prototype.getId = function() {
return this.id_;
Expand Down
6 changes: 2 additions & 4 deletions py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The `selenium` package is used automate web browser interaction from Python.
+-----------+-----------------------------------------------------------------------------------+
| **Docs**: | `selenium package API <http://selenium.googlecode.com/git/docs/api/py/api.html>`_ |
+-----------+-----------------------------------------------------------------------------------+
| **Dev**: | https://code.google.com/p/selenium/ |
| **Dev**: | https://github.com/SeleniumHQ/Selenium |
+-----------+-----------------------------------------------------------------------------------+
| **PyPI**: | https://pypi.python.org/pypi/selenium |
+-----------+-----------------------------------------------------------------------------------+
Expand Down Expand Up @@ -121,7 +121,5 @@ Use The Source Luke!
View source code online:

+-----------+-------------------------------------------------------+
| official: | https://code.google.com/p/selenium/source/browse/py |
+-----------+-------------------------------------------------------+
| mirror: | https://github.com/SeleniumHQ/selenium/tree/master/py |
| official: | https://github.com/SeleniumHQ/selenium/tree/master/py |
+-----------+-------------------------------------------------------+
4 changes: 2 additions & 2 deletions rb/CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ IE:

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

* Update Ruby bindings to use the rewritten Chrome driver (see http://code.google.com/p/selenium/wiki/ChromeDriver).
* Update Ruby bindings to use the rewritten Chrome driver (see https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver).
* Add deprecation warning for WebDriver::Element#value (use Element#attribute("value") instead).
* Change the default timeout for Wait instances to 5 seconds.
* Fix bug where locators would fail if Object.prototype had been modified.
Expand Down
2 changes: 1 addition & 1 deletion rb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ JRuby and Rubinius.

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

## License
Expand Down

0 comments on commit 47e9ce8

Please sign in to comment.