Skip to content

Commit d2fe87a

Browse files
committed
Changes sldn references to developer
1 parent fc2f83c commit d2fe87a

6 files changed

Lines changed: 15 additions & 14 deletions

File tree

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686

8787
* API: Adds virtual server rescue command to SoftLayer.VSManager
8888

89-
* API+CLI: Adds ability to import virtual images from a given URI. The API only supports importing from a swift account using 'swift://'. For more details, see http://sldn.softlayer.com/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromExternalSource.
89+
* API+CLI: Adds ability to import virtual images from a given URI. The API only supports importing from a swift account using 'swift://'. For more details, see http://developer.softlayer.com/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromExternalSource.
9090

9191
* CLI: A `--fixtures` global flag was added to pull from fixture data instead of the API. This is useful for discovery, demonstration and testing purposes.
9292

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ SoftLayer API Python Client
1313
:target: https://coveralls.io/r/softlayer/softlayer-python
1414

1515
SoftLayer API bindings for Python. For use with
16-
`SoftLayer's API <http://sldn.softlayer.com/reference/softlayerapi>`_.
16+
`SoftLayer's API <http://developer.softlayer.com/reference/softlayerapi>`_.
1717

1818
This library provides a simple interface to interact with SoftLayer's XML-RPC
1919
API and provides support for many of SoftLayer API's features like
20-
`object masks <http://sldn.softlayer.com/article/Using-Object-Masks-SoftLayerAPI>`_
20+
`object masks <http://developer.softlayer.com/article/Object-Masks>`_
2121
and includes a command-line interface that can be used to manage various
2222
SoftLayer services.
2323

SoftLayer/managers/ssl.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def add_certificate(self, certificate):
5858
"""Creates a new certificate.
5959
6060
:param dict certificate: A dictionary representing the parts of the
61-
certificate. See SLDN for more information.
61+
certificate.
62+
See developer.softlayer.com for more info.
6263
6364
Example::
6465

docs/api/client.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and executing XML-RPC calls against the SoftLayer API. Below are some links
88
that will help to use the SoftLayer API.
99

1010

11-
* `SoftLayer API Documentation <http://sldn.softlayer.com/reference/softlayerapi>`_
11+
* `SoftLayer API Documentation <http://developer.softlayer.com/reference/softlayerapi>`_
1212
* `Source on GitHub <https://github.com/softlayer/softlayer-python>`_
1313

1414
::
@@ -86,9 +86,9 @@ offsets, and retrieving objects by id. The following section assumes you have
8686
an initialized client named 'client'.
8787

8888
The best way to test our setup is to call the
89-
`getObject <http://sldn.softlayer.com/reference/services/SoftLayer_Account/getObject>`_
89+
`getObject <http://developer.softlayer.com/reference/services/SoftLayer_Account/getObject>`_
9090
method on the
91-
`SoftLayer_Account <http://sldn.softlayer.com/reference/services/SoftLayer_Account>`_
91+
`SoftLayer_Account <http://developer.softlayer.com/reference/services/SoftLayer_Account>`_
9292
service.
9393
::
9494

@@ -97,7 +97,7 @@ service.
9797
For a more complex example we'll retrieve a support ticket with id 123456 along
9898
with the ticket's updates, the user it's assigned to, the servers attached to
9999
it, and the datacenter those servers are in. To retrieve our extra information
100-
using an `object mask <http://sldn.softlayer.com/article/Extended-Object-Masks>`_.
100+
using an `object mask <http://developer.softlayer.com/article/Extended-Object-Masks>`_.
101101

102102
Retrieve a ticket using object masks.
103103
::
@@ -107,7 +107,7 @@ Retrieve a ticket using object masks.
107107

108108

109109
Now add an update to the ticket with
110-
`Ticket.addUpdate <http://sldn.softlayer.com/reference/services/SoftLayer_Ticket/addUpdate>`_.
110+
`Ticket.addUpdate <http://developer.softlayer.com/reference/services/SoftLayer_Ticket/addUpdate>`_.
111111
This uses a parameter, which translate to positional arguments in the order
112112
that they appear in the API docs.
113113
::
@@ -145,7 +145,7 @@ SoftLayer's XML-RPC API also allows for pagination.
145145
client['Account'].getVirtualGuests(limit=10, offset=10) # Page 2
146146

147147
Here's how to create a new Cloud Compute Instance using
148-
`SoftLayer_Virtual_Guest.createObject <http://sldn.softlayer.com/reference/services/SoftLayer_Virtual_Guest/createObject>`_.
148+
`SoftLayer_Virtual_Guest.createObject <http://developer.softlayer.com/reference/services/SoftLayer_Virtual_Guest/createObject>`_.
149149
Be warned, this call actually creates an hourly virtual server so this will
150150
have billing implications.
151151
::

docs/dev/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Developer Resources
132132
-------------------
133133
.. toctree::
134134

135-
SoftLayer API Documentation <http://sldn.softlayer.com/reference/softlayerapi>
135+
SoftLayer API Documentation <http://developer.softlayer.com/reference/softlayerapi>
136136
Source on GitHub <https://github.com/softlayer/softlayer-python>
137137
Issues <https://github.com/softlayer/softlayer-python/issues>
138138
Pull Requests <https://github.com/softlayer/softlayer-python/pulls>

docs/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
SoftLayer API Python Client |version|
44
========================================
5-
`API Docs <http://sldn.softlayer.com/reference/softlayerapi>`_ ``|``
5+
`API Docs <http://developer.softlayer.com/reference/softlayerapi>`_ ``|``
66
`GitHub <https://github.com/softlayer/softlayer-python>`_ ``|``
77
`Issues <https://github.com/softlayer/softlayer-python/issues>`_ ``|``
88
`Pull Requests <https://github.com/softlayer/softlayer-python/pulls>`_ ``|``
@@ -12,7 +12,7 @@ SoftLayer API Python Client |version|
1212

1313

1414
This is the documentation to SoftLayer's Python API Bindings. These bindings
15-
use SoftLayer's `XML-RPC interface <http://sldn.softlayer.com/article/XML-RPC>`_
15+
use SoftLayer's `XML-RPC interface <http://developer.softlayer.com/article/XML-RPC>`_
1616
in order to manage SoftLayer services.
1717

1818
.. toctree::
@@ -39,7 +39,7 @@ External Links
3939
--------------
4040
.. toctree::
4141

42-
SoftLayer API Documentation <http://sldn.softlayer.com/reference/softlayerapi>
42+
SoftLayer API Documentation <http://developer.softlayer.com/reference/softlayerapi>
4343
Source on GitHub <https://github.com/softlayer/softlayer-python>
4444
Issues <https://github.com/softlayer/softlayer-python/issues>
4545
Pull Requests <https://github.com/softlayer/softlayer-python/pulls>

0 commit comments

Comments
 (0)