Skip to content

Commit

Permalink
Fix links pointing to the old truffle and graal-core repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Dec 11, 2017
1 parent 093f013 commit 0f9f302
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions compiler/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
To submit pull requests to graal-core, you need to sign the [Oracle Contributor
Agreement][1].
To submit pull requests to the Graal compiler, you need to sign the [Oracle
Contributor Agreement][1].

All pull requests should be given an [Assignee][2]. The assignee is responsible
for adding the `accept` label to the pull request once they have completed a
Expand Down
2 changes: 1 addition & 1 deletion compiler/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Graal is a dynamic compiler written in Java that integrates with the HotSpot JVM. It has a focus on high performance and extensibility.
In addition, it provides optimized performance for [Truffle](https://github.com/graalvm/truffle)-based languages running on the JVM.
In addition, it provides optimized performance for [Truffle](https://github.com/graalvm/graal/tree/master/truffle)-based languages running on the JVM.

## Setup

Expand Down
2 changes: 1 addition & 1 deletion truffle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ constructed via its `newBuilder` methods. The other ways to construct or modify
source objects are now deprecated.
* [RootNode.getName](http://graalvm.github.io/graal/truffle/javadoc/com/oracle/truffle/api/nodes/RootNode.html#getName--)
to provide name of a method or function it represents.
* Instruments are now [loaded eagerly](https://github.com/graalvm/truffle/commit/81018616abb0d4ae68e98b7fcd6fda7c8d0393a2) -
* Instruments are now [loaded eagerly](https://github.com/graalvm/graal/commit/81018616abb0d4ae68e98b7fcd6fda7c8d0393a2) -
which has been reported as an observable behavioral change.
* The [Instrumenter](http://graalvm.github.io/graal/truffle/javadoc/com/oracle/truffle/api/instrumentation/Instrumenter.html)
now allows one to observe when sources and source sections are being loaded via
Expand Down
2 changes: 1 addition & 1 deletion truffle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Introduction

Truffle is a framework for implementing languages as simple interpreters.
Together with the [Graal compiler](https://github.com/graalvm/graal-core/),
Together with the [Graal compiler](https://github.com/graalvm/graal/tree/master/compiler),
Truffle interpreters are automatically just-in-time compiled and programs
running on top of them can reach performance of normal Java.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
*
* Truffle is an Open Source library for building programming language implementations as interpreters
* for self-modifying Abstract Syntax Trees.
* Together with the Open Source <a href="https://github.com/graalvm/graal-core/">Graal compiler</a>, Truffle
* Together with the Open Source <a href="https://github.com/graalvm/graal/tree/master/compiler">Graal compiler</a>, Truffle
* represents a significant step forward in programming language implementation technology in the
* current era of dynamic languages.
* <p>
Expand All @@ -74,13 +74,13 @@
* For additional information, please visit:
* <ul>
* <li>The Graal project home: <a href="https://github.com/graalvm">https://github.com/graalvm</a></li>
* <li>Truffle home: <a href="https://github.com/graalvm/truffle">https://github.com/graalvm/truffle</a></li>
* <li>Truffle home: <a href="https://github.com/graalvm/graal/tree/master/truffle">https://github.com/graalvm/graal/tree/master/truffle</a></li>
* <li>Sulong home: <a href="https://github.com/graalvm/sulong">https://github.com/graalvm/sulong</a></li>
* <li><a href="http://www.oracle.com/technetwork/oracle-labs/program-languages/overview/index-2301583.html">Graal VM</a>
* download on the Oracle Technology Network</li>
* <li><a href="https://github.com/graalvm/truffle/blob/master/docs/Publications.md#truffle-presentations">Truffle Presentations and Publications</a></li>
* <li><a href="https://github.com/graalvm/graal/blob/master/docs/Publications.md#truffle-presentations">Truffle Presentations and Publications</a></li>
* <li><a href="https://github.com/graalvm/sulong/blob/master/docs/PUBLICATIONS.md">Sulong Presentations and Publications</a></li>
* <li><a href="https://github.com/graalvm/graal-core/blob/master/docs/Publications.md#graal-papers">Graal Publications</a></li>
* <li><a href="https://github.com/graalvm/graal/blob/master/docs/Publications.md#graal-papers">Graal Publications</a></li>
* <li><a href="https://github.com/graalvm/simplelanguage">SimpleLanguage</a>: the tutorial Truffle language implementation.</li>
* <li><a href="https://github.com/graalvm/fastr/blob/master/README.md">FastR</a>: an Open Source Truffle implementation of the R language</li>
* <li><a href="https://github.com/graalvm/truffleruby/blob/master/README.md">TruffleRuby</a>: an Open Source Truffle implementation of the Ruby language</li>
Expand All @@ -94,4 +94,4 @@
*
* @since 0.25
*/
package com.oracle.truffle.tutorial.background;
package com.oracle.truffle.tutorial.background;
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
* Related information:
* <ul>
* <li>The Graal project home: <a href="https://github.com/graalvm">https://github.com/graalvm</a></li>
* <li><a href="https://github.com/graalvm/graal-core/blob/master/docs/Publications.md#graal-papers">Graal Publications</a></li>
* <li><a href="https://github.com/graalvm/graal/blob/master/docs/Publications.md#graal-papers">Graal Publications</a></li>
* <li>{@linkplain com.oracle.truffle.tutorial Other Truffle Tutorials}
* </ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@
*
* <div id="contents">
*
* Welcome to <a href="https://github.com/graalvm/truffle">Truffle</a>:
* Welcome to <a href="https://github.com/graalvm/graal/tree/master/truffle">Truffle</a>:
* the Open Source framework for implementing programming languages with very high performance, Java embedding,
* language interoperation, debugging, and general tooling support. Truffle is part of the
* <a href="https://github.com/graalvm/truffle">Graal Project</a>, developed and maintained by
* <a href="https://github.com/graalvm/graal">GraalVM Project</a>, developed and maintained by
* <a href="http://labs.oracle.com/">Oracle Labs</a>
* and the
* <a href="http://www.jku.at/isse/content">Institute for System Software</a> of the
Expand Down
4 changes: 2 additions & 2 deletions truffle/src/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
<body>

<p>
{@link com.oracle.truffle.tutorial Truffle Tutorial} gives
you the best introduction to to <a href="https://github.com/graalvm/truffle">Truffle</a>:
The {@link com.oracle.truffle.tutorial Truffle Tutorial} gives
you the best introduction to <a href="https://github.com/graalvm/graal/tree/master/truffle">Truffle</a>:
the Open Source framework for implementing programming languages with very high performance, Java embedding,
language interoperation, debugging, and general tooling support.
</p>
Expand Down

0 comments on commit 0f9f302

Please sign in to comment.