Skip to content

Commit 695fef7

Browse files
committed
Update links and references to github.
1 parent 771bd4a commit 695fef7

6 files changed

Lines changed: 9 additions & 73 deletions

File tree

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ python-can
1111
:target: http://python-can.readthedocs.org/en/latest/?badge=latest
1212
:alt: Documentation Status
1313

14-
.. |build| image:: https://drone.io/bitbucket.org/hardbyte/python-can/status.png
15-
:target: https://drone.io/bitbucket.org/hardbyte/python-can/latest
14+
.. |build| image:: https://drone.io/github.com/hardbyte/python-can/status.png
15+
:target: https://drone.io/github.com/hardbyte/python-can/latest
1616
:alt: CI Server
1717

1818

@@ -36,7 +36,7 @@ Discussion
3636
----------
3737

3838
If you run into bugs, you can file them in our
39-
`issue tracker <https://bitbucket.org/hardbyte/python-can/issues>`__.
39+
`issue tracker <https://github.com/hardbyte/python-can/issues>`__.
4040

4141
There is also a `python-can <https://groups.google.com/forum/#!forum/python-can>`__
4242
mailing list for development discussion.

doc/bin.rst

Lines changed: 0 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -35,57 +35,4 @@ Command line help (``--help``)::
3535
Which backend do you want to use?
3636

3737

38-
j1939_logger.py
39-
---------------
4038

41-
command line help (``--help``)::
42-
43-
usage: j1939_logger.py [-h] [-v] [-i {socketcan,kvaser,serial}]
44-
[--pgn PGN | --source SOURCE | --filter FILTER]
45-
channel
46-
47-
Log J1939 traffic, printing messages to stdout or to a given file
48-
49-
positional arguments:
50-
channel
51-
Most backend interfaces require some sort of channel. For example with the serial
52-
interface the channel might be a rfcomm device: /dev/rfcomm0
53-
Other channel examples are: can0, vcan0
54-
55-
optional arguments:
56-
-h, --help show this help message and exit
57-
-v
58-
How much information do you want to see at the command line?
59-
You can add several of these e.g., -vv is DEBUG
60-
-i {socketcan,kvaser,serial}, --interface {socketcan,kvaser,serial}
61-
Which backend do you want to use?
62-
--pgn PGN
63-
Only listen for messages with given Parameter Group Number (PGN).
64-
Can be used more than once. Give either hex 0xEE00 or decimal 60928
65-
--source SOURCE
66-
Only listen for messages from the given Source address
67-
Can be used more than once. Give either hex 0x0E or decimal.
68-
--filter FILTER
69-
A json file with more complicated filtering rules.
70-
71-
An example file that subscribes to all messages from SRC=0
72-
and two particular PGNs from SRC=1:
73-
74-
[
75-
{
76-
"source": 1,
77-
"pgn": 61475
78-
}
79-
{
80-
"source": 1,
81-
"pgn": 61474
82-
}
83-
{
84-
"source": 0
85-
}
86-
]
87-
88-
89-
90-
Pull requests welcome!
91-
https://bitbucket.org/hardbyte/python-can

doc/conf.py

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

4040
# Now, you can use the alias name as a new role, e.g. :issue:`123`.
4141
extlinks = {
42-
'issue': ('https://bitbucket.org/hardbyte/python-can/issue/%s/', 'issue '),
42+
'issue': ('https://github.com/hardbyte/python-can/issues/%s/', 'issue '),
4343
}
4444

4545
# If this is True, todo and todolist produce output, else they produce nothing.

doc/development.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Developer's Overview
55
Contributing
66
------------
77

8-
Contribute to source code, documentation, examples and report issues on bitbucket:
9-
https://bitbucket.org/hardbyte/python-can
8+
Contribute to source code, documentation, examples and report issues:
9+
https://github.com/hardbyte/python-can
1010

1111

1212
Creating a Release

doc/index.rst

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,10 @@ Contents:
4848
history
4949

5050

51-
52-
Installation and Quickstart
53-
~~~~~~~~~~~~~~~~~~~~~~~~~~~
54-
55-
See the readme included with the source code.
56-
57-
https://bitbucket.org/hardbyte/python-can
58-
59-
6051
Known Bugs
6152
~~~~~~~~~~
6253

63-
See the project `bug tracker`_ on bitbucket. Patches and pull requests very welcome!
54+
See the project `bug tracker`_ on github. Patches and pull requests very welcome!
6455

6556

6657
.. admonition:: Documentation generated
@@ -73,6 +64,4 @@ See the project `bug tracker`_ on bitbucket. Patches and pull requests very welc
7364
.. _Pip: http://pip.openplans.org/
7465
.. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall
7566
.. _IPython: http://ipython.scipy.org
76-
.. _Mercurial: http://mercurial.selenic.com
77-
.. _TortoiseHG: http://tortoisehg.bitbucket.org/
78-
.. _bug tracker: https://bitbucket.org/hardbyte/python-can/issues
67+
.. _bug tracker: https://github.com/hardbyte/python-can/issues

setup.py

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

1212
setup(
1313
name="python-can",
14-
url="https://bitbucket.org/hardbyte/python-can",
14+
url="https://github.com/hardbyte/python-can",
1515
version=__version__,
1616
packages=find_packages(),
1717
author="Brian Thorne",

0 commit comments

Comments
 (0)