Change all references to Domain Registry to Nomulus

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=136068582
This commit is contained in:
jianglai 2016-10-13 12:00:05 -07:00 committed by Ben McIlwain
parent 9695024f1b
commit 71d7a382f3
30 changed files with 38 additions and 38 deletions

View file

@ -183,7 +183,7 @@ public class RydeGpgIntegrationTest extends ShardableTestCase {
//
// jart@jart:/tmp$ gpg --verify /tmp/deposit.sig /tmp/deposit.ryde
// gpg: Signature made Mon 26 Aug 2013 12:04:27 PM EDT using RSA-S key ID 2774D88E
// gpg: Good signature from "Domain Registry Dev <domain-registry-eng+dev-key@google.com>"
// gpg: Good signature from "Nomulus Dev <domain-registry-eng+dev-key@google.com>"
logger.info("Running GPG to verify signature...");
{
Process pid = gpg.exec(cmd.get(), "--verify", sigFile.toString(), rydeFile.toString());

View file

@ -23,7 +23,7 @@ import java.net.URL;
import java.nio.file.Path;
import java.nio.file.Paths;
/** Lightweight HTTP server for testing the Domain Registry Admin and Registrar consoles. */
/** Lightweight HTTP server for testing the Nomulus Admin and Registrar consoles. */
public final class RegistryTestServer {
public static final ImmutableMap<String, Path> RUNFILES =

View file

@ -22,7 +22,7 @@ import google.registry.config.RegistryEnvironment;
import google.registry.config.TestRegistryConfig;
import org.junit.rules.ExternalResource;
/** JUnit Rule for overriding Domain Registry configuration values. */
/** JUnit Rule for overriding Nomulus configuration values. */
public final class RegistryConfigRule extends ExternalResource {
private final Optional<RegistryConfig> override;

View file

@ -55,7 +55,7 @@ import org.junit.Rule;
/**
* Base test class for mapreduces. Adapted from EndToEndTestCase with some modifications that
* allow it to work with the Domain Registry project, most notably inside knowledge of our
* allow it to work with the Nomulus project, most notably inside knowledge of our
* routing paths and our Datastore/Task Queue configurations.
*
* <p>See https://github.com/GoogleCloudPlatform/appengine-mapreduce/blob/master/java/src/test/java/com/google/appengine/tools/mapreduce/EndToEndTestCase.java

View file

@ -53,7 +53,7 @@ function setUp() {
clientId: test.testClientId,
showPaymentLink: false,
logoFilename: 'logo.png',
productName: 'Domain Registry'
productName: 'Nomulus'
});
registry.registrar.ConsoleTestUtil.setup(test);
var regNavlist = $('reg-navlist');

View file

@ -52,7 +52,7 @@ function setUp() {
clientId: test.testClientId,
showPaymentLink: false,
logoFilename: 'logo.png',
productName: 'Domain Registry'
productName: 'Nomulus'
});
stubs.setPath('goog.net.XhrIo', goog.testing.net.XhrIo);
registry.registrar.ConsoleTestUtil.setup(test);

View file

@ -43,7 +43,7 @@ function setUp() {
clientId: 'daddy',
showPaymentLink: false,
logoFilename: 'logo.png',
productName: 'Domain Registry'
productName: 'Nomulus'
});
registry.registrar.ConsoleTestUtil.setup(test);
}

View file

@ -49,7 +49,7 @@ function setUp() {
clientId: 'ignore',
showPaymentLink: false,
logoFilename: 'logo.png',
productName: 'Domain Registry'
productName: 'Nomulus'
});
stubs.setPath('goog.net.XhrIo', goog.testing.net.XhrIo);

View file

@ -49,7 +49,7 @@ function setUp() {
clientId: 'ignore',
showPaymentLink: false,
logoFilename: 'logo.png',
productName: 'Domain Registry'
productName: 'Nomulus'
});
stubs.setPath('goog.net.XhrIo', goog.testing.net.XhrIo);

View file

@ -57,7 +57,7 @@ function setUp() {
clientId: test.testClientId,
showPaymentLink: false,
logoFilename: 'logo.png',
productName: 'Domain Registry'
productName: 'Nomulus'
});
stubs.setPath('goog.net.XhrIo', goog.testing.net.XhrIo);
registry.registrar.ConsoleTestUtil.setup(test);

View file

@ -51,7 +51,7 @@ function setUp() {
clientId: test.testClientId,
showPaymentLink: false,
logoFilename: 'logo.png',
productName: 'Domain Registry'
productName: 'Nomulus'
});
stubs.setPath('goog.net.XhrIo', goog.testing.net.XhrIo);
registry.registrar.ConsoleTestUtil.setup(test);

View file

@ -51,7 +51,7 @@ public class ConsoleUiActionTest {
public void setUp() throws Exception {
action.enabled = true;
action.logoFilename = "logo.png";
action.productName = "Domain Registry";
action.productName = "Nomulus";
action.response = response;
action.sessionUtils = sessionUtils;
action.userService = UserServiceFactory.getUserService();