Update urls for akka.io transition to akka.github.com
This commit is contained in:
parent
cd01c68860
commit
2c5889d4b9
7 changed files with 26 additions and 26 deletions
|
|
@ -34,7 +34,7 @@
|
|||
<li><a href="http://akka.io/downloads">Download</a></li>
|
||||
<li><a href="http://groups.google.com/group/akka-user">Mailing List</a></li>
|
||||
<li><a href="http://github.com/akka/akka">Code</a></li>
|
||||
<li><a href="http://typesafe.com/products/typesafe-subscription">Commerical Support</a></li>
|
||||
<li><a href="http://typesafe.com/products/typesafe-subscription">Commercial Support</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -44,9 +44,9 @@
|
|||
<div class="container">
|
||||
<div class="page-title">{{ title }}</div>
|
||||
{%- if is_snapshot -%}
|
||||
<div class="pdf-link"><a href="http://akka.io/docs/akka/snapshot/Akka.pdf"><img src="{{ pathto('_static/pdf-icon.png', 1) }}" style="height: 40px;" /></a></div>
|
||||
<div class="pdf-link"><a href="http://doc.akka.io/docs/akka/snapshot/Akka.pdf"><img src="{{ pathto('_static/pdf-icon.png', 1) }}" style="height: 40px;" /></a></div>
|
||||
{%- else -%}
|
||||
<div class="pdf-link"><a href="http://akka.io/docs/akka/{{ version|e }}/Akka.pdf"><img src="{{ pathto('_static/pdf-icon.png', 1) }}" style="height: 40px;" /></a></div>
|
||||
<div class="pdf-link"><a href="http://doc.akka.io/docs/akka/{{ version|e }}/Akka.pdf"><img src="{{ pathto('_static/pdf-icon.png', 1) }}" style="height: 40px;" /></a></div>
|
||||
{%- endif -%}
|
||||
</div>
|
||||
<div class="main-container">
|
||||
|
|
|
|||
|
|
@ -7,11 +7,11 @@
|
|||
|
||||
Akkas integration with the `Spring Framework <http://www.springsource.org>`_ supplies the Spring way of using the Typed Actor Java API and for CamelService configuration for :ref:`camel-spring-applications`. It uses Spring's custom namespaces to create Typed Actors, supervisor hierarchies and a CamelService in a Spring environment.
|
||||
|
||||
To use the custom name space tags for Akka you have to add the XML schema definition to your spring configuration. It is available at `http://akka.io/akka-1.0.xsd <http://akka.io/akka.xsd>`_. The namespace for Akka is:
|
||||
To use the custom name space tags for Akka you have to add the XML schema definition to your spring configuration. It is available at `http://repo.akka.io/akka-1.0.xsd <http://repo.akka.io/akka.xsd>`_. The namespace for Akka is:
|
||||
|
||||
.. code-block:: xml
|
||||
|
||||
xmlns:akka="http://akka.io/schema/akka"
|
||||
xmlns:akka="http://repo.akka.io/schema/akka"
|
||||
|
||||
Example header for Akka Spring configuration:
|
||||
|
||||
|
|
@ -20,12 +20,12 @@ Example header for Akka Spring configuration:
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:akka="http://akka.io/schema/akka"
|
||||
xmlns:akka="http://repo.akka.io/schema/akka"
|
||||
xsi:schemaLocation="
|
||||
http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
|
||||
http://akka.io/schema/akka
|
||||
http://akka.io/akka-1.0.xsd">
|
||||
http://repo.akka.io/schema/akka
|
||||
http://repo.akka.io/akka-1.0.xsd">
|
||||
|
||||
-
|
||||
|
||||
|
|
|
|||
|
|
@ -224,7 +224,7 @@ As you can see we already have a Java source file called ``App.java``, let's now
|
|||
|
||||
We also need to edit the ``pom.xml`` build file. Let's add the dependency we
|
||||
need as well as the Maven repository it should download it from. The Akka Maven
|
||||
repository can be found at http://akka.io/releases/ and Typesafe provides
|
||||
repository can be found at http://repo.akka.io/releases/ and Typesafe provides
|
||||
http://repo.typesafe.com/typesafe/releases/ that proxies several other
|
||||
repositories, including akka.io. It should now look something like this:
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ Download the release you need from http://akka.io/downloads and unzip it.
|
|||
Using a snapshot version
|
||||
------------------------
|
||||
|
||||
The Akka nightly snapshots are published to http://akka.io/snapshots/ and are
|
||||
The Akka nightly snapshots are published to http://repo.akka.io/snapshots/ and are
|
||||
versioned with both ``SNAPSHOT`` and timestamps. You can choose a timestamped
|
||||
version to work with and can decide when to update to a newer version. The Akka
|
||||
snapshots repository is also proxied through http://repo.typesafe.com/typesafe/snapshots/
|
||||
|
|
@ -76,7 +76,7 @@ Using a build tool
|
|||
------------------
|
||||
|
||||
Akka can be used with build tools that support Maven repositories. The Akka
|
||||
Maven repository can be found at http://akka.io/realeses/ and Typesafe provides
|
||||
Maven repository can be found at http://repo.akka.io/releases/ and Typesafe provides
|
||||
http://repo.typesafe.com/typesafe/releases/ that proxies several other
|
||||
repositories, including akka.io.
|
||||
|
||||
|
|
|
|||
|
|
@ -28,10 +28,10 @@ Akka uses Git and is hosted at `Github <http://github.com>`_.
|
|||
* Akka: clone the Akka repository from `<http://github.com/akka/akka>`_
|
||||
|
||||
|
||||
`Releases Repository <http://akka.io/releases/>`_
|
||||
=================================================
|
||||
`Releases Repository <http://repo.akka.io/releases/>`_
|
||||
======================================================
|
||||
|
||||
The Akka Maven repository can be found at http://akka.io/releases/.
|
||||
The Akka Maven repository can be found at http://repo.akka.io/releases/.
|
||||
|
||||
Typesafe provides http://repo.typesafe.com/typesafe/releases/ that proxies
|
||||
several other repositories, including akka.io. It is convenient to use the
|
||||
|
|
@ -39,7 +39,7 @@ Typesafe repository, since it includes all external dependencies of Akka. It is
|
|||
a "best-effort" service, and if it is unavailable you may need to use the
|
||||
underlying repositories directly.
|
||||
|
||||
* http://akka.io/releases/
|
||||
* http://repo.akka.io/releases/
|
||||
* http://repository.codehaus.org/
|
||||
* http://guiceyfruit.googlecode.com/svn/repo/releases/
|
||||
* http://repository.jboss.org/nexus/content/groups/public/
|
||||
|
|
@ -49,10 +49,10 @@ underlying repositories directly.
|
|||
* http://databinder.net/repo/
|
||||
|
||||
|
||||
`Snapshots Repository <http://akka.io/snapshots/>`_
|
||||
===================================================
|
||||
`Snapshots Repository <http://repo.akka.io/snapshots/>`_
|
||||
========================================================
|
||||
|
||||
Nightly builds are available in http://akka.io/snapshots/ and proxied through
|
||||
Nightly builds are available in http://repo.akka.io/snapshots/ and proxied through
|
||||
http://repo.typesafe.com/typesafe/snapshots/ as both ``SNAPSHOT`` and
|
||||
timestamped versions.
|
||||
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ Release Versions
|
|||
2.0
|
||||
---
|
||||
|
||||
- Akka 2.0 - http://akka.io/docs/akka/2.0/ (or in `PDF format <http://akka.io/docs/akka/2.0/Akka.pdf>`__)
|
||||
- Akka 2.0 - http://doc.akka.io/docs/akka/2.0/ (or in `PDF format <http://doc.akka.io/docs/akka/2.0/Akka.pdf>`__)
|
||||
|
||||
1.3.1
|
||||
-----
|
||||
|
||||
- Akka 1.3.1 - http://akka.io/docs/akka/1.3.1/ (or in `PDF format <http://akka.io/docs/akka/1.3.1/Akka.pdf>`__)
|
||||
- Akka Modules 1.3.1 - http://akka.io/docs/akka-modules/1.3.1/ (or in `PDF format <http://akka.io/docs/akka-modules/1.3.1/AkkaModules.pdf>`__)
|
||||
- Akka 1.3.1 - http://doc.akka.io/docs/akka/1.3.1/ (or in `PDF format <http://doc.akka.io/docs/akka/1.3.1/Akka.pdf>`__)
|
||||
- Akka Modules 1.3.1 - http://doc.akka.io/docs/akka-modules/1.3.1/ (or in `PDF format <http://doc.akka.io/docs/akka-modules/1.3.1/AkkaModules.pdf>`__)
|
||||
|
||||
|
||||
Akka Snapshot
|
||||
|
|
@ -27,4 +27,4 @@ Akka Snapshot
|
|||
Automatically published documentation for the latest SNAPSHOT version of Akka can
|
||||
be found here:
|
||||
|
||||
- Akka - http://akka.io/docs/akka/snapshot/ (or in `PDF format <http://akka.io/docs/akka/snapshot/Akka.pdf>`__)
|
||||
- Akka - http://doc.akka.io/docs/akka/snapshot/ (or in `PDF format <http://doc.akka.io/docs/akka/snapshot/Akka.pdf>`__)
|
||||
|
|
|
|||
|
|
@ -12,17 +12,17 @@ Release Versions
|
|||
2.0
|
||||
-----
|
||||
|
||||
- Akka 2.0 - http://akka.io/api/akka/2.0/
|
||||
- Akka 2.0 - http://doc.akka.io/api/akka/2.0/
|
||||
|
||||
1.3.1
|
||||
-----
|
||||
|
||||
- Akka 1.3.1 - http://akka.io/api/akka/1.3.1/
|
||||
- Akka Modules 1.3.1 - http://akka.io/api/akka-modules/1.3.1/
|
||||
- Akka 1.3.1 - http://doc.akka.io/api/akka/1.3.1/
|
||||
- Akka Modules 1.3.1 - http://doc.akka.io/api/akka-modules/1.3.1/
|
||||
|
||||
|
||||
Akka Snapshot
|
||||
=============
|
||||
|
||||
Automatically published Scaladoc API for the latest SNAPSHOT version of Akka can
|
||||
be found here: http://akka.io/api/akka/snapshot
|
||||
be found here: http://doc.akka.io/api/akka/snapshot
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue