mirror of
https://github.com/google/nomulus.git
synced 2025-05-19 10:49:35 +02: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:
parent
29c38f3622
commit
55dcf8e062
2 changed files with 11 additions and 11 deletions
|
@ -21,7 +21,7 @@
|
||||||
{@param name: string}
|
{@param name: string}
|
||||||
{@param period: int}
|
{@param period: int}
|
||||||
{@param registrant: string}
|
{@param registrant: string}
|
||||||
{@param contacts: map<string, string>}
|
{@param contacts: legacy_object_map<string, string>}
|
||||||
{@param authInfo: string}
|
{@param authInfo: string}
|
||||||
{@param applicationRoid: string}
|
{@param applicationRoid: string}
|
||||||
{@param applicationTime: string}
|
{@param applicationTime: string}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
/** Registrar contacts listing for view only. */
|
/** Registrar contacts listing for view only. */
|
||||||
{template .set}
|
{template .set}
|
||||||
{@param contactsByType: map<string, ?>}
|
{@param contactsByType: legacy_object_map<string, ?>}
|
||||||
{let $possibleTypesLookup: [
|
{let $possibleTypesLookup: [
|
||||||
['admin', 'Primary', 'Primary contact for general issues.'],
|
['admin', 'Primary', 'Primary contact for general issues.'],
|
||||||
['billing', 'Billing', 'Contact for financial communications & invoices.'],
|
['billing', 'Billing', 'Contact for financial communications & invoices.'],
|
||||||
|
@ -102,8 +102,8 @@
|
||||||
/** Registrar contact item page. */
|
/** Registrar contact item page. */
|
||||||
{template .contact}
|
{template .contact}
|
||||||
{@param namePrefix: string}
|
{@param namePrefix: string}
|
||||||
{@param item: map<string, ?>}
|
{@param item: legacy_object_map<string, ?>}
|
||||||
{@param actualTypesLookup: map<string, bool>}
|
{@param actualTypesLookup: legacy_object_map<string, bool>}
|
||||||
{@param readonly: bool}
|
{@param readonly: bool}
|
||||||
<form name="item" class="{css('item')} {css('registrar')}">
|
<form name="item" class="{css('item')} {css('registrar')}">
|
||||||
<h1>Contact Details</h1>
|
<h1>Contact Details</h1>
|
||||||
|
@ -120,8 +120,8 @@
|
||||||
/** Contact info for view and edit. */
|
/** Contact info for view and edit. */
|
||||||
{template .contactInfo}
|
{template .contactInfo}
|
||||||
{@param namePrefix: string}
|
{@param namePrefix: string}
|
||||||
{@param item: map<string, ?>}
|
{@param item: legacy_object_map<string, ?>}
|
||||||
{@param actualTypesLookup: map<string, bool>}
|
{@param actualTypesLookup: legacy_object_map<string, bool>}
|
||||||
{@param? readonly: bool}
|
{@param? readonly: bool}
|
||||||
{let $possibleTypesLookup: [
|
{let $possibleTypesLookup: [
|
||||||
['admin', 'Primary', 'Primary contact for general issues.'],
|
['admin', 'Primary', 'Primary contact for general issues.'],
|
||||||
|
@ -177,9 +177,9 @@
|
||||||
|
|
||||||
/** @private */
|
/** @private */
|
||||||
{template .contactTypeSettingsView_ visibility="private"}
|
{template .contactTypeSettingsView_ visibility="private"}
|
||||||
{@param item: map<string, ?>}
|
{@param item: legacy_object_map<string, ?>}
|
||||||
{@param possibleTypesLookup: list<list<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')}">
|
<tr class="{css('kd-settings-pane-section')}">
|
||||||
<td>
|
<td>
|
||||||
<label class="{css('setting-label')}">Contact type</label>
|
<label class="{css('setting-label')}">Contact type</label>
|
||||||
|
@ -218,10 +218,10 @@
|
||||||
|
|
||||||
/** @private */
|
/** @private */
|
||||||
{template .contactTypeSettingsEdit_ visibility="private"}
|
{template .contactTypeSettingsEdit_ visibility="private"}
|
||||||
{@param item: map<string, ?>}
|
{@param item: legacy_object_map<string, ?>}
|
||||||
{@param namePrefix: string}
|
{@param namePrefix: string}
|
||||||
{@param possibleTypesLookup: list<list<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')}">
|
<tr class="{css('kd-settings-pane-section')}">
|
||||||
<td>
|
<td>
|
||||||
<label class="{css('setting-label')}">Contact type</label>
|
<label class="{css('setting-label')}">Contact type</label>
|
||||||
|
@ -299,7 +299,7 @@
|
||||||
/** @private */
|
/** @private */
|
||||||
{template .contactCheckboxes_ visibility="private"}
|
{template .contactCheckboxes_ visibility="private"}
|
||||||
{@param namePrefix: string}
|
{@param namePrefix: string}
|
||||||
{@param actualTypesLookup: map<string, bool>}
|
{@param actualTypesLookup: legacy_object_map<string, bool>}
|
||||||
{@param possibleTypesLookup: list<list<string>>}
|
{@param possibleTypesLookup: list<list<string>>}
|
||||||
{for $type in $possibleTypesLookup}
|
{for $type in $possibleTypesLookup}
|
||||||
{let $name: $namePrefix + 'type.' + $type[0] /}
|
{let $name: $namePrefix + 'type.' + $type[0] /}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue