Skip to content

Commit

Permalink
[doc] update repository URL and other links
Browse files Browse the repository at this point in the history
  • Loading branch information
loganek committed Jan 28, 2019
1 parent 19cabb2 commit 4906084
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Expand Up @@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.

We welcome you to use the GitHub issue tracker to report bugs or suggest features.

When filing an issue, please check [existing open](https://github.com/amzn/hawktracer/issues), or [recently closed](https://github.com/amzn/hawktracer/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
When filing an issue, please check [existing open](https://github.com/loganek/hawktracer/issues), or [recently closed](https://github.com/loganek/hawktracer/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:

* A reproducible test case or series of steps
Expand Down Expand Up @@ -41,7 +41,7 @@ GitHub provides additional document on [forking a repository](https://help.githu


## Finding contributions to work on
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/amzn/hawktracer/labels/help%20wanted) issues is a great place to start.
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/loganek/hawktracer/labels/help%20wanted) issues is a great place to start.


## Code of Conduct
Expand All @@ -56,6 +56,6 @@ If you discover a potential security issue in this project we ask that you notif

## Licensing

See the [LICENSE](https://github.com/amzn/hawktracer/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
See the [LICENSE](https://github.com/loganek/hawktracer/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.

We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
2 changes: 1 addition & 1 deletion bindings/python3/setup.py.in
Expand Up @@ -48,4 +48,4 @@ setup(name = 'HawkTracer',
cmdclass = {'build_ext': HTBuildExt},
author = 'Marcin Kolny',
author_email='marcin.kolny@gmail.com',
url = 'https://github.com/amzn/hawktracer')
url = 'https://www.hawktracer.org')
4 changes: 2 additions & 2 deletions cmake/packager.cmake
@@ -1,7 +1,7 @@
if(WIN32)
set(CPACK_GENERATOR "NSIS")
set(CPACK_NSIS_URL_INFO_ABOUT "https://amzn.github.io/hawktracer")
set(CPACK_NSIS_HELP_LINK "https://amzn.github.io/hawktracer")
set(CPACK_NSIS_URL_INFO_ABOUT "https://www.hawktracer.org")
set(CPACK_NSIS_HELP_LINK "https://www.hawktracer.org")
set(CPACK_NSIS_CONTACT "Marcin Kolny <marcin.kolny@gmail>")
set(CPACK_NSIS_MODIFY_PATH ON)
set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
Expand Down
4 changes: 2 additions & 2 deletions docs/Doxyfile.in
Expand Up @@ -238,8 +238,8 @@ TAB_SIZE = 4
# "Side Effects:". You can put \n's in the value part of an alias to insert
# newlines.

ALIASES = "repourl=https://github.com/amzn/hawktracer/" \
"repocodeurl= https://github.com/amzn/hawktracer/tree/master/"
ALIASES = "repourl=https://github.com/loganek/hawktracer/" \
"repocodeurl= https://github.com/loganek/hawktracer/tree/master/"

# This tag can be used to specify a number of word-keyword mappings (TCL only).
# A mapping has the form "name=value". For example adding "class=itcl::class"
Expand Down
2 changes: 1 addition & 1 deletion docs/build_install.md
Expand Up @@ -2,7 +2,7 @@
## Downloading source code
Source code is hosted on GitHub servers. To download the code, just run following command:
~~~.sh
git clone https://github.com/amzn/hawktracer.git
git clone https://github.com/loganek/hawktracer.git
~~~
You can also download a tarball for a specific release. All the available releases and their tarballs can be found on [the release page](@repourl/releases).

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Expand Up @@ -25,7 +25,7 @@ The library provides many different types of events (e.g. CPU usage event, durat
## Community
Currently the only way to contact the community is to join the Gitter channel [amzn/hawktracer](https://gitter.im/amzn/hawktracer).

For feature requests or bug reports, please use [GitHub form](https://github.com/amzn/hawktracer/issues/new).
For feature requests or bug reports, please use [GitHub form](https://github.com/loganek/hawktracer/issues/new).

## Development
All development on %HawkTracer is done on the [GitHub project](https://github.com/amzn/hawktracer). Instructions for contributing can be found on the @subpage docs/CONTRIBUTING.md page.
All development on %HawkTracer is done on the [GitHub project](https://github.com/loganek/hawktracer). Instructions for contributing can be found on the @subpage docs/CONTRIBUTING.md page.
2 changes: 1 addition & 1 deletion docs/integration.md
@@ -1,6 +1,6 @@
# Integrate %HawkTracer to existing project {#integration}

%HawkTracer is a library which provides functions for instrumenting the code. To provide best user experience, %HawkTracer supports multiple build systems. If you can't find the one you use, please [let us know](https://github.com/amzn/hawktracer/issues/new).
%HawkTracer is a library which provides functions for instrumenting the code. To provide best user experience, %HawkTracer supports multiple build systems. If you can't find the one you use, please [let us know](https://github.com/loganek/hawktracer/issues/new).
Following build systems/tools are already supported:
* [CMake](#CMake)
* [pkg-config](#pkg-config)
Expand Down
Expand Up @@ -9,7 +9,7 @@ set(HT_BUILD_STATIC ON)
# Add new project. You can find more options in CMake documentation:
# https://cmake.org/cmake/help/v3.0/module/ExternalProject.html
ExternalProject_Add(HawkTracerExt
GIT_REPOSITORY https://github.com/amzn/hawktracer.git
GIT_REPOSITORY https://github.com/loganek/hawktracer.git
GIT_TAG master # Git ref of the project. It could be commit hash, branch name or tag.
INSTALL_COMMAND "" # we don't want to install the library, just build it
CMAKE_ARGS "-DBUILD_STATIC_LIB=${HT_BUILD_STATIC}"
Expand Down
2 changes: 1 addition & 1 deletion tools/generate_release_mail.py
Expand Up @@ -94,7 +94,7 @@ def is_master_branch():
git_info = GitInfo(previous_tag, current_tag)

print("I'm pleased to announce HawkTracer {} ({}) release!".format(current_version, code_name))
print("URL: https://github.com/amzn/hawktracer/releases/tag/{}".format(current_tag))
print("URL: https://github.com/loganek/hawktracer/releases/tag/{}".format(current_tag))
print("Changes")
print("==========================================")
found_version = False
Expand Down

0 comments on commit 4906084

Please sign in to comment.