Skip to content

Commit 20cc761

Browse files
Fix broken API links, refs #844.
1 parent e7484f5 commit 20cc761

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

doc/tutorials/examples/actionscript/socket/flex/src/org/pyamf/examples/socket/PythonSocket.as

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ package org.pyamf.examples.socket
1515
[Event(name="connected", type="flash.events.Event")]
1616
[Event(name="disconnected", type="flash.events.Event")]
1717
[Event(name="logUpdate", type="flash.events.Event")]
18+
1819
/**
1920
* Socket connection to read and write raw binary data.
2021
*
21-
* @see http://livedocs.adobe.com/flex/3/langref/flash/net/Socket.html
22+
* @see http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/Socket.html
2223
* @since 0.1
2324
*/
2425
public class PythonSocket extends Socket

doc/tutorials/general/helloworld/ssa1.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ Source
3131
References
3232
==========
3333

34-
- `SSA on Livedocs <http://livedocs.adobe.com/fms/2/docs/00000630.html>`_
34+
- `SSA on Livedocs <http://help.adobe.com/en_US/flashmediaserver/ssaslr/index.html>`_
3535
- `Mozilla core JavaScript 1.5 Reference <https://developer.mozilla.org/en/JavaScript/Reference>`_
3636
- `Flash Remoting for FCS <http://www.sephiroth.it/tutorials/flashPHP/flashcomm_AMFPHP>`_
3737

3838

39-
.. |ActionScript (TM)| unicode:: ActionScript U+2122
39+
.. |ActionScript (TM)| unicode:: ActionScript U+2122

pyamf/amf3.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class DataOutput(object):
158158
This class is the I/O counterpart to the L{DataInput} class, which reads
159159
binary data.
160160
161-
@see: U{IDataOutput on Livedocs (external)
161+
@see: U{IDataOutput on Adobe Help (external)
162162
<http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/utils/IDataOutput.html>}
163163
"""
164164

@@ -243,7 +243,7 @@ def writeMultiByte(self, value, charset):
243243
@param charset: The string denoting the character set to use. Possible
244244
character set strings include C{shift-jis}, C{cn-gb},
245245
C{iso-8859-1} and others.
246-
@see: U{Supported character sets on Livedocs (external)
246+
@see: U{Supported character sets on Adobe Help (external)
247247
<http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/charset-codes.html>}
248248
"""
249249
if type(value) is unicode:
@@ -330,7 +330,7 @@ class DataInput(object):
330330
This class is the I/O counterpart to the L{DataOutput} class, which writes
331331
binary data.
332332
333-
@see: U{IDataInput on Livedocs (external)
333+
@see: U{IDataInput on Adobe Help (external)
334334
<http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/utils/IDataInput.html>}
335335
"""
336336

@@ -501,7 +501,7 @@ class ByteArray(util.BufferedByteStream, DataInput, DataOutput):
501501
- Writing your own AMF/Remoting packet.
502502
- Optimizing the size of your data by using custom data types.
503503
504-
@see: U{ByteArray on Livedocs (external)
504+
@see: U{ByteArray on Adobe Help (external)
505505
<http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/utils/ByteArray.html>}
506506
"""
507507

pyamf/remoting/amf3.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"""
55
AMF3 RemoteObject support.
66
7-
@see: U{RemoteObject on LiveDocs
8-
<http://livedocs.adobe.com/flex/3/langref/mx/rpc/remoting/RemoteObject.html>}
7+
@see: U{RemoteObject on Adobe Help (external)
8+
<http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/rpc/remoting/RemoteObject.html>}
99
10-
@since: 0.1.0
10+
@since: 0.1
1111
"""
1212

1313
import calendar

0 commit comments

Comments
 (0)