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

Replace real-logic URLs with artiofix and aeron-io. #541

Merged
merged 2 commits into from
Jan 31, 2025
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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ When submitting code, please make every effort to follow existing conventions an

By contributing your code, you agree to license your contribution under the terms of the APLv2:

https://github.com/real-logic/artio/blob/master/LICENSE
https://github.com/artiofix/artio/blob/master/LICENSE

All files are made available under the Apache 2.0 license.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Artio

[![Actions Status](https://github.com/real-logic/artio/workflows/Continuous%20Integration/badge.svg)](https://github.com/real-logic/artio/actions)
[![CodeQL Status](https://github.com/real-logic/artio/workflows/CodeQL/badge.svg)](https://github.com/real-logic/artio/actions)
[![GitHub](https://img.shields.io/github/license/real-logic/Aeron.svg)](https://github.com/real-logic/aeron/blob/master/LICENSE)
[![Actions Status](https://github.com/artiofix/artio/workflows/Continuous%20Integration/badge.svg)](https://github.com/artiofix/artio/actions)
[![CodeQL Status](https://github.com/artiofix/artio/workflows/CodeQL/badge.svg)](https://github.com/artiofix/artio/actions)
[![GitHub](https://img.shields.io/github/license/aeron-io/Aeron.svg)](https://github.com/aeron-io/aeron/blob/master/LICENSE)

High-Performance FIX Gateway

Please check out the [Wiki](https://github.com/real-logic/artio/wiki).
Please check out the [Wiki](https://github.com/artiofix/artio/wiki).

## How to build

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ History
=================================================================================
-->

<!-- Reference: https://github.com/real-logic/simple-binary-encoding -->
<!-- Reference: https://github.com/aeron-io/simple-binary-encoding -->
<sbe:messageSchema xmlns:ns2="http://www.fixprotocol.org/ns/simple/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:sbe="http://fixprotocol.io/2016/sbe"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public String getDecimalFloatOverflowHandler()
/**
* Sets the parent package where classes are generated. Optional, defaults to {@link #DEFAULT_PARENT_PACKAGE}.
* Different parent packages can be used to use multiple different fix dictionary versions, see the
* <a href="https://github.com/real-logic/artio/wiki/Multiple-FIX-Versions">wiki</a> for details.
* <a href="https://github.com/artiofix/artio/wiki/Multiple-FIX-Versions">wiki</a> for details.
*
* @param parentPackage the parent package where classes are generated.
* @return this
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ public void shouldResetAllNestedRepeatingGroupEntries() throws Exception

// Although the message does not have nestedEg tags, the decoders will remain
// This is to ensure allocation is done only when it's necessary to add new elements to a repeating group
// for more details see issue https://github.com/real-logic/artio/issues/532
// for more details see issue https://github.com/artiofix/artio/issues/532
assertNotNull(getNestedGroup(group));

group = next(group);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public boolean isConnected()
* Gets whether the session is slow or not. If the session is not currently connected then this method will
* return true.
*
* @see <a href="https://github.com/real-logic/artio/wiki/Performance-and-Fairness#slow-consumer-support">
* @see <a href="https://github.com/artiofix/artio/wiki/Performance-and-Fairness#slow-consumer-support">
* Slow Consumer Support.</a>
* @return true if slow, false otherwise.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ public EngineConfiguration errorIfDuplicateEngineDetected(final boolean errorIfD
* Sets the cancel on disconnect timeout handler for FIX sessions. This is invoked when a cancel on disconnect
* event occurs.
*
* You can see <a href="https://github.com/real-logic/artio/wiki/Cancel-On-Disconnect-Notification">the wiki</a>
* You can see <a href="https://github.com/artiofix/artio/wiki/Cancel-On-Disconnect-Notification">the wiki</a>
* for more details around Cancel on disconnect support.
*
* @param cancelOnDisconnectTimeoutHandler the handler to be invoked when a cancel on disconnect event occurs.
Expand All @@ -1118,7 +1118,7 @@ public EngineConfiguration cancelOnDisconnectTimeoutHandler(
* Sets the cancel on disconnect timeout handler for FIXP connections. This is invoked when a cancel on disconnect
* event occurs.
*
* You can see <a href="https://github.com/real-logic/artio/wiki/Cancel-On-Disconnect-Notification">the wiki</a>
* You can see <a href="https://github.com/artiofix/artio/wiki/Cancel-On-Disconnect-Notification">the wiki</a>
* for more details around Cancel on disconnect support.
*
* @param fixPCancelOnDisconnectTimeoutHandler the handler to be invoked when a cancel on disconnect event occurs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* <li>the CODTimeoutWindow also specified in the establish message must have expired without a reconnect</li>
* </ul>.
*
* You can see <a href="https://github.com/real-logic/artio/wiki/Cancel-On-Disconnect-Notification">the wiki</a>
* You can see <a href="https://github.com/artiofix/artio/wiki/Cancel-On-Disconnect-Notification">the wiki</a>
* for more details around Cancel on disconnect support.
*
* The FIX equivalent to this interface is {@link CancelOnDisconnectTimeoutHandler}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -495,8 +495,8 @@ public String currentAeronChannel()
*
* @param configuration the configuration for this Session.
* @return a reply object wrapping the Connection itself.
* @see <a href="https://github.com/real-logic/artio/wiki/ILink-3-Support">
* https://github.com/real-logic/artio/wiki/ILink-3-Support</a>
* @see <a href="https://github.com/artiofix/artio/wiki/ILink-3-Support">
* https://github.com/artiofix/artio/wiki/ILink-3-Support</a>
*/
public Reply<ILink3Connection> initiate(final ILink3ConnectionConfiguration configuration)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Action onMessage(
/**
* Invoked if a session has been detected as being, or no longer being demarcated as a slow
* session. See
* <a href="https://github.com/real-logic/artio/wiki/Performance-and-Fairness#slow-consumer-support">the wiki</a>
* <a href="https://github.com/artiofix/artio/wiki/Performance-and-Fairness#slow-consumer-support">the wiki</a>
* for details on what a slow consumer is.
*
* @param libraryId the id of library which the session used to owned by.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* the value provided in the logon message if it is specified and otherwise taking it from the acceptor engine
* configuration.
*
* You can see <a href="https://github.com/real-logic/artio/wiki/Cancel-On-Disconnect-Notification">the wiki</a>
* You can see <a href="https://github.com/artiofix/artio/wiki/Cancel-On-Disconnect-Notification">the wiki</a>
* for more details around Cancel on disconnect support.
*
* Initiator implementations using cancel on disconnect can set the requisite logon fields using a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ public long cancelOnDisconnectTimeoutWindowInNs()

/**
* Gets the slow consumer status for this session. See
* <a href="https://github.com/real-logic/artio/wiki/Performance-and-Fairness#slow-consumer-support">the wiki</a>
* <a href="https://github.com/artiofix/artio/wiki/Performance-and-Fairness#slow-consumer-support">the wiki</a>
* for details on what a slow consumer is.
*
* @return true if the session is a slow consumer, false otherwise.
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ def projectPom = {
packaging = 'jar'
description = 'High-Performance FIX Gateway'

url = 'https://github.com/real-logic/artio'
url = 'https://github.com/artiofix/artio'

scm {
connection = 'scm:git:https://github.com/real-logic/artio.git'
developerConnection = 'scm:git:https://github.com/real-logic/artio.git'
url = 'https://github.com/real-logic/artio.git'
connection = 'scm:git:https://github.com/artiofix/artio.git'
developerConnection = 'scm:git:https://github.com/artiofix/artio.git'
url = 'https://github.com/artiofix/artio.git'
}

licenses {
Expand Down Expand Up @@ -254,7 +254,7 @@ subprojects {
manifest.attributes(
'Implementation-Title': 'Artio',
'Implementation-Version': archiveVersion,
'Implementation-Vendor': 'Real Logic Limited'
'Implementation-Vendor': 'Adaptive Financial Consulting'
)
}

Expand Down