mirror of
https://github.com/google/nomulus.git
synced 2025-06-26 14:24:55 +02:00
Import code from internal repository to git
This commit is contained in:
commit
0ef0c933d2
2490 changed files with 281594 additions and 0 deletions
21
java/com/google/domain/registry/tools/soy/DomainCheck.soy
Normal file
21
java/com/google/domain/registry/tools/soy/DomainCheck.soy
Normal file
|
@ -0,0 +1,21 @@
|
|||
{namespace domain.registry.tools autoescape="strict"}
|
||||
|
||||
/**
|
||||
* Domain check request
|
||||
*/
|
||||
{template .domaincheck}
|
||||
{@param domainNames: list<string>}
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<check>
|
||||
<domain:check xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
{foreach $d in $domainNames}
|
||||
<domain:name>{$d}</domain:name>
|
||||
{/foreach}
|
||||
</domain:check>
|
||||
</check>
|
||||
<clTRID>GTechTool</clTRID>
|
||||
</command>
|
||||
</epp>
|
||||
{/template}
|
Loading…
Add table
Add a link
Reference in a new issue