Skip to content

Commit 895ab5b

Browse files
authored
Merge branch 'master' into feature/mosapi-client
2 parents 6b25216 + bf66b37 commit 895ab5b

File tree

143 files changed

+282
-5483
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+282
-5483
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,5 @@ core/**/registrar_dbg*.js
121121
core/**/registrar_bin*.css
122122
core/**/registrar_dbg*.css
123123

124-
# Appengine generated files
125-
core/WEB-INF/appengine-generated/*.bin
126-
core/WEB-INF/appengine-generated/*.xml
127-
128124
# jEnv
129125
.java-version

appengine_war.gradle

Lines changed: 0 additions & 108 deletions
This file was deleted.

build.gradle

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,6 @@ subprojects {
331331

332332
// Set up all of the deployment projects.
333333
if (services.contains(project.path)) {
334-
335-
apply from: "${rootDir.path}/appengine_war.gradle"
336-
337334
// Return early, do not apply the settings below.
338335
return
339336
}
@@ -380,17 +377,6 @@ subprojects {
380377
}
381378
}
382379

383-
// Force SDK download and deployment to be sequential, otherwise parallel tasks
384-
// will fail. For SDK download, they will try to write to the same location to
385-
// upgrade gcloud. For deployment, they will try to deploy different services to
386-
// the same project at the same time.
387-
for (int i = 1; i < services.size(); i++) {
388-
project("${services[i]}").downloadCloudSdk
389-
.dependsOn(project("${services[i - 1]}").downloadCloudSdk)
390-
project("${services[i]}").appengineDeployAll
391-
.dependsOn(project("${services[i - 1]}").appengineDeployAll)
392-
}
393-
394380
// If "-P verboseTestOutput=true" is passed in, configure all subprojects to dump all of their
395381
// output and final test status (pass/fail, errors) for each test class.
396382
//

console-webapp/src/app/settings/contact/contact.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ export interface Contact {
4747
registrarId?: string;
4848
faxNumber?: string;
4949
types: Array<contactType>;
50-
visibleInWhoisAsAdmin?: boolean;
51-
visibleInWhoisAsTech?: boolean;
52-
visibleInDomainWhoisAsAbuse?: boolean;
50+
visibleInRdapAsAdmin?: boolean;
51+
visibleInRdapAsTech?: boolean;
52+
visibleInDomainRdapAsAbuse?: boolean;
5353
}
5454

5555
export interface ViewReadyContact extends Contact {

console-webapp/src/app/settings/contact/contactDetails.component.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,23 +111,23 @@ <h1>Contact Type</h1>
111111
<h1>RDAP Preferences</h1>
112112
<div>
113113
<mat-checkbox
114-
[(ngModel)]="contactService.contactInEdit.visibleInWhoisAsAdmin"
114+
[(ngModel)]="contactService.contactInEdit.visibleInRdapAsAdmin"
115115
[ngModelOptions]="{ standalone: true }"
116116
>Show in Registrar RDAP record as admin contact</mat-checkbox
117117
>
118118
</div>
119119

120120
<div>
121121
<mat-checkbox
122-
[(ngModel)]="contactService.contactInEdit.visibleInWhoisAsTech"
122+
[(ngModel)]="contactService.contactInEdit.visibleInRdapAsTech"
123123
[ngModelOptions]="{ standalone: true }"
124124
>Show in Registrar RDAP record as technical contact</mat-checkbox
125125
>
126126
</div>
127127

128128
<div>
129129
<mat-checkbox
130-
[(ngModel)]="contactService.contactInEdit.visibleInDomainWhoisAsAbuse"
130+
[(ngModel)]="contactService.contactInEdit.visibleInDomainRdapAsAbuse"
131131
[ngModelOptions]="{ standalone: true }"
132132
>Show Phone and Email in Domain RDAP Record as registrar abuse contact
133133
(per CL&D requirements)</mat-checkbox
@@ -189,24 +189,24 @@ <h2>Contact details</h2>
189189
<mat-list-item role="listitem">
190190
<h2>RDAP Preferences</h2>
191191
</mat-list-item>
192-
@if(contactService.contactInEdit.visibleInWhoisAsAdmin) {
192+
@if(contactService.contactInEdit.visibleInRdapAsAdmin) {
193193
<mat-divider></mat-divider>
194194
<mat-list-item role="listitem">
195195
<span class="console-app__list-value"
196196
>Show in Registrar RDAP record as admin contact</span
197197
>
198198
</mat-list-item>
199-
} @if(contactService.contactInEdit.visibleInWhoisAsTech) {
199+
} @if(contactService.contactInEdit.visibleInRdapAsTech) {
200200
<mat-divider></mat-divider>
201201
<mat-list-item
202202
role="listitem"
203-
*ngIf="contactService.contactInEdit.visibleInWhoisAsTech"
203+
*ngIf="contactService.contactInEdit.visibleInRdapAsTech"
204204
>
205205
<span class="console-app__list-value"
206206
>Show in Registrar RDAP record as technical contact</span
207207
>
208208
</mat-list-item>
209-
} @if(contactService.contactInEdit.visibleInDomainWhoisAsAbuse) {
209+
} @if(contactService.contactInEdit.visibleInDomainRdapAsAbuse) {
210210
<mat-divider></mat-divider>
211211
<mat-list-item role="listitem">
212212
<span class="console-app__list-value"

core/src/main/java/google/registry/config/RegistryConfig.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1578,12 +1578,7 @@ public static String getGSuiteOutgoingEmailDisplayName() {
15781578
return CONFIG_SETTINGS.get().gSuite.outgoingEmailDisplayName;
15791579
}
15801580

1581-
/**
1582-
* Returns default WHOIS server to use when {@code Registrar#getWhoisServer()} is {@code null}.
1583-
*
1584-
* @see "google.registry.whois.DomainWhoisResponse"
1585-
* @see "google.registry.whois.RegistrarWhoisResponse"
1586-
*/
1581+
/** Returns default WHOIS server to use when {@code Registrar#getWhoisServer()} is null. */
15871582
public static String getDefaultRegistrarWhoisServer() {
15881583
return CONFIG_SETTINGS.get().registryPolicy.defaultRegistrarWhoisServer;
15891584
}

core/src/main/java/google/registry/config/files/tld/example.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
addGracePeriodLength: "PT432000S"
77
allowedFullyQualifiedHostNames: []
8-
allowedRegistrantContactIds: []
98
anchorTenantAddGracePeriodLength: "PT2592000S"
109
autoRenewGracePeriodLength: "PT3888000S"
1110
automaticTransferLength: "PT432000S"

core/src/main/java/google/registry/env/alpha/backend/WEB-INF/appengine-web.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.

core/src/main/java/google/registry/env/alpha/bsa/WEB-INF/appengine-web.xml

Lines changed: 0 additions & 34 deletions
This file was deleted.

core/src/main/java/google/registry/env/alpha/default/WEB-INF/appengine-web.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)