Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[gzweb] bitbucket->github update links #118

Merged
merged 1 commit into from
Aug 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gzweb_development/tutorial.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Overview

The source code for GzWeb is located at the
[osrf/gzweb](https://bitbucket.org/osrf/gzweb) Bitbucket repository.
[osrf/gzweb](https://github.com/osrf/gzweb) GitHub repository.

The source code is composed of two main parts: Javascript code inside `gzweb/gz3d`,
responsible for visualization, and C++ code inside `gzweb/gzbridge`,
Expand Down Expand Up @@ -77,14 +77,14 @@ GzWeb communicates with `gzserver` by publishing and subscribing to Gazebo topic

## Bug reports and feature requests

On GzWeb's [issue tracker](https://bitbucket.org/osrf/gzweb/issues),
On GzWeb's [issue tracker](https://github.com/osrf/gzweb/issues),
you're able to report bugs and ask for new features. Simply create an issue and
categorize it accordingly.

## Pull requests

If you've fixed a bug or added a feature and would like your changes to be
integrated into GzWeb, you can make a
[pull request](https://bitbucket.org/osrf/gzweb/pull-requests) to the
[pull request](https://github.com/osrf/gzweb/pulls) to the
repository, and the changes will be reviewed and merged.

6 changes: 3 additions & 3 deletions gzweb_development/tutorial_1.9.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Overview

The source code for Gzweb is located at the [osrf/gzweb](https://bitbucket.org/osrf/gzweb) Bitbucket repository. The source code is composed of two main parts: Javascript code inside `gzweb/gz3d`, responsible for visualization, and C++ code inside `gzweb/gzbridge`, responsible for communicating with `gzserver`.
The source code for Gzweb is located at the [osrf/gzweb](https://github.com/osrf/gzweb) GitHub repository. The source code is composed of two main parts: Javascript code inside `gzweb/gz3d`, responsible for visualization, and C++ code inside `gzweb/gzbridge`, responsible for communicating with `gzserver`.

# Javascript development

Expand Down Expand Up @@ -46,8 +46,8 @@ Gzweb communicates with `gzserver` by publishing and subscribing to Gazebo topic

## Bug reports and feature requests

On Gzweb's [issue tracker](https://bitbucket.org/osrf/gzweb/issues?status=new&status=open), you're able to report bugs and ask for new features. Simply create an issue and categorize it accordingly.
On Gzweb's [issue tracker](https://github.com/osrf/gzweb/issues), you're able to report bugs and ask for new features. Simply create an issue and categorize it accordingly.

## Pull requests

If you've fixed a bug or added a feature and would like your changes to be integrated into Gzweb, you can make a [pull request](https://bitbucket.org/osrf/gzweb/pull-requests) to the repository, and the changes will be reviewed and merged.
If you've fixed a bug or added a feature and would like your changes to be integrated into Gzweb, you can make a [pull request](https://github.com/osrf/gzweb/pulls) to the repository, and the changes will be reviewed and merged.
6 changes: 3 additions & 3 deletions gzweb_install/tutorial_1.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gzweb is a graphical interface which communicates with gzserver. To use
1. Next, install the dependencies from a terminal:

~~~
sudo apt-get install libjansson-dev nodejs npm libboost-dev imagemagick libtinyxml-dev mercurial cmake build-essential
sudo apt-get install libjansson-dev nodejs npm libboost-dev imagemagick libtinyxml-dev git cmake build-essential
~~~


Expand All @@ -36,15 +36,15 @@ Gzweb is a graphical interface which communicates with gzserver. To use
1. Clone the repository into a directory in your home folder:

~~~
cd ~; hg clone https://bitbucket.org/osrf/gzweb
cd ~; git clone https://github.com/osrf/gzweb
~~~

1. Enter the Gzweb repository and switch to a release branch:

~~~
cd ~/gzweb
# Note for Gazebo versions < 7, please use the gzweb_1.2.0 branch
hg up gzweb_1.3.0
git checkout gzweb_1.3.0
~~~

1. The first time you build, you'll need to gather all the Gazebo models in the right directory and prepare them for the web. Before running the deploy script, you'll need to source the Gazebo setup.sh file:
Expand Down