mirror of
https://github.com/google/nomulus
synced 2026-01-11 00:10:36 +00:00
Rename Soy map to legacy_object_map (first step of migration)
See []for more information.
Created with the tools in []
Tested:
TAP --sample for global presubmit queue
[]
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=184727400
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
{@param name: string}
|
||||
{@param period: int}
|
||||
{@param registrant: string}
|
||||
{@param contacts: map<string, string>}
|
||||
{@param contacts: legacy_object_map<string, string>}
|
||||
{@param authInfo: string}
|
||||
{@param applicationRoid: string}
|
||||
{@param applicationTime: string}
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
/** Registrar contacts listing for view only. */
|
||||
{template .set}
|
||||
{@param contactsByType: map<string, ?>}
|
||||
{@param contactsByType: legacy_object_map<string, ?>}
|
||||
{let $possibleTypesLookup: [
|
||||
['admin', 'Primary', 'Primary contact for general issues.'],
|
||||
['billing', 'Billing', 'Contact for financial communications & invoices.'],
|
||||
@@ -102,8 +102,8 @@
|
||||
/** Registrar contact item page. */
|
||||
{template .contact}
|
||||
{@param namePrefix: string}
|
||||
{@param item: map<string, ?>}
|
||||
{@param actualTypesLookup: map<string, bool>}
|
||||
{@param item: legacy_object_map<string, ?>}
|
||||
{@param actualTypesLookup: legacy_object_map<string, bool>}
|
||||
{@param readonly: bool}
|
||||
<form name="item" class="{css('item')} {css('registrar')}">
|
||||
<h1>Contact Details</h1>
|
||||
@@ -120,8 +120,8 @@
|
||||
/** Contact info for view and edit. */
|
||||
{template .contactInfo}
|
||||
{@param namePrefix: string}
|
||||
{@param item: map<string, ?>}
|
||||
{@param actualTypesLookup: map<string, bool>}
|
||||
{@param item: legacy_object_map<string, ?>}
|
||||
{@param actualTypesLookup: legacy_object_map<string, bool>}
|
||||
{@param? readonly: bool}
|
||||
{let $possibleTypesLookup: [
|
||||
['admin', 'Primary', 'Primary contact for general issues.'],
|
||||
@@ -177,9 +177,9 @@
|
||||
|
||||
/** @private */
|
||||
{template .contactTypeSettingsView_ visibility="private"}
|
||||
{@param item: map<string, ?>}
|
||||
{@param item: legacy_object_map<string, ?>}
|
||||
{@param possibleTypesLookup: list<list<string>>}
|
||||
{@param actualTypesLookup: map<string, bool>}
|
||||
{@param actualTypesLookup: legacy_object_map<string, bool>}
|
||||
<tr class="{css('kd-settings-pane-section')}">
|
||||
<td>
|
||||
<label class="{css('setting-label')}">Contact type</label>
|
||||
@@ -218,10 +218,10 @@
|
||||
|
||||
/** @private */
|
||||
{template .contactTypeSettingsEdit_ visibility="private"}
|
||||
{@param item: map<string, ?>}
|
||||
{@param item: legacy_object_map<string, ?>}
|
||||
{@param namePrefix: string}
|
||||
{@param possibleTypesLookup: list<list<string>>}
|
||||
{@param actualTypesLookup: map<string, bool>}
|
||||
{@param actualTypesLookup: legacy_object_map<string, bool>}
|
||||
<tr class="{css('kd-settings-pane-section')}">
|
||||
<td>
|
||||
<label class="{css('setting-label')}">Contact type</label>
|
||||
@@ -299,7 +299,7 @@
|
||||
/** @private */
|
||||
{template .contactCheckboxes_ visibility="private"}
|
||||
{@param namePrefix: string}
|
||||
{@param actualTypesLookup: map<string, bool>}
|
||||
{@param actualTypesLookup: legacy_object_map<string, bool>}
|
||||
{@param possibleTypesLookup: list<list<string>>}
|
||||
{for $type in $possibleTypesLookup}
|
||||
{let $name: $namePrefix + 'type.' + $type[0] /}
|
||||
|
||||
Reference in New Issue
Block a user