Adding the Yealink Tone Country setting to all templates, and including two more minor revisions of handsets that have been released. (#6458)
* Added two new minor hardware revisions, the CP925 and T42U, and added the voice.tone.country = {} to all templates, previously missing on most
* Minor typo from a wrong window issue, and removing the commented examples for easier grepping
This commit is contained in:
parent
e52f6626f9
commit
3d0fe368ac
|
|
@ -402,8 +402,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -400,8 +400,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -0,0 +1,91 @@
|
|||
<YealinkIPPhoneDirectory>
|
||||
{foreach $contacts as $row}
|
||||
{if $smarty.get.contacts == "users" && $row.category == "users"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_organization && $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_organization}, {$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_organization && $row.contact_name_given == "" && $row.contact_name_family == ""}
|
||||
<Name>{$row.contact_organization}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family && $row.contact_organization == ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given}
|
||||
<Name>{$row.contact_name_given}</Name>
|
||||
{elseif $row.contact_name_family}
|
||||
<Name>{$row.contact_name_family}</Name>
|
||||
{/if}
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "groups" && $row.category == "groups"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_organization && $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_organization}, {$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_organization && $row.contact_name_given == "" && $row.contact_name_family == ""}
|
||||
<Name>{$row.contact_organization}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family && $row.contact_organization == ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given}
|
||||
<Name>{$row.contact_name_given}</Name>
|
||||
{elseif $row.contact_name_family}
|
||||
<Name>{$row.contact_name_family}</Name>
|
||||
{/if}
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "extensions" && $row.category == "extensions"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
{if $row.phone_number}
|
||||
<Telephone>{$row.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$row.phone_extension}</Telephone>
|
||||
{/if}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "all"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_organization && $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_organization}, {$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_organization && $row.contact_name_given == "" && $row.contact_name_family == ""}
|
||||
<Name>{$row.contact_organization}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family && $row.contact_organization == ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given}
|
||||
<Name>{$row.contact_name_given}</Name>
|
||||
{elseif $row.contact_name_family}
|
||||
<Name>{$row.contact_name_family}</Name>
|
||||
{/if}
|
||||
{if isset($row.numbers)}
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{else}
|
||||
<Telephone>{$row.phone_extension}</Telephone>
|
||||
{/if}
|
||||
</DirectoryEntry>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</YealinkIPPhoneDirectory>
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<root_favorite_set>
|
||||
<item id_name="localdirectory" display_name="Local Directory" priority="2" enable="0" />
|
||||
<item id_name="history" display_name="History" priority="3" enable="1" />
|
||||
<item id_name="networkcalllog" display_name="Network CallLog" priority="4" enable="0" />
|
||||
<item id_name="remotedirectory" display_name="Remote Phone Book" priority="5" enable="1" />
|
||||
<item id_name="ldap" display_name="LDAP" priority="1" enable="0" />
|
||||
<item id_name="networkdirectory" display_name="Network Directory" priority="6" enable="0" />
|
||||
</root_favorite_set>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0"?>
|
||||
<root_super_search>
|
||||
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
|
||||
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
|
||||
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
|
||||
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
|
||||
</root_super_search>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
#!version:1.0.0.1
|
||||
## The header above must appear as-is in the first line
|
||||
|
||||
include:config "y000000000148.cfg"
|
||||
include:config "{$mac}.cfg"
|
||||
|
||||
overwrite_mode = {$yealink_overwrite_mode}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -401,8 +401,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -332,8 +332,7 @@ voice.jib.max =
|
|||
voice.jib.normal =
|
||||
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
|
||||
#Customize the tone when the "voice.tone.country" is configured as Custom.
|
||||
#The value format: Frequency/Duration.
|
||||
|
|
|
|||
|
|
@ -332,8 +332,7 @@ voice.jib.max =
|
|||
voice.jib.normal =
|
||||
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
|
||||
#Customize the tone when the "voice.tone.country" is configured as Custom.
|
||||
#The value format: Frequency/Duration.
|
||||
|
|
|
|||
|
|
@ -343,8 +343,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -332,8 +332,7 @@ voice.jib.max =
|
|||
voice.jib.normal =
|
||||
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
|
||||
#Customize the tone when the "voice.tone.country" is configured as Custom.
|
||||
#The value format: Frequency/Duration.
|
||||
|
|
|
|||
|
|
@ -383,7 +383,6 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
|
|
|
|||
|
|
@ -383,8 +383,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -332,8 +332,7 @@ voice.jib.max =
|
|||
voice.jib.normal =
|
||||
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
|
||||
#Customize the tone when the "voice.tone.country" is configured as Custom.
|
||||
#The value format: Frequency/Duration.
|
||||
|
|
|
|||
|
|
@ -382,8 +382,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -383,8 +383,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -332,8 +332,7 @@ voice.jib.max =
|
|||
voice.jib.normal =
|
||||
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
|
||||
#Customize the tone when the "voice.tone.country" is configured as Custom.
|
||||
#The value format: Frequency/Duration.
|
||||
|
|
|
|||
|
|
@ -384,7 +384,6 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
|
|
|
|||
|
|
@ -383,7 +383,6 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
|
|
|
|||
|
|
@ -343,8 +343,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -332,8 +332,7 @@ voice.jib.max =
|
|||
voice.jib.normal =
|
||||
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
|
||||
#Customize the tone when the "voice.tone.country" is configured as Custom.
|
||||
#The value format: Frequency/Duration.
|
||||
|
|
|
|||
|
|
@ -382,8 +382,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -332,8 +332,7 @@ voice.jib.max =
|
|||
voice.jib.normal =
|
||||
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
|
||||
#Customize the tone when the "voice.tone.country" is configured as Custom.
|
||||
#The value format: Frequency/Duration.
|
||||
|
|
|
|||
|
|
@ -332,8 +332,7 @@ voice.jib.max =
|
|||
voice.jib.normal =
|
||||
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
|
||||
#Customize the tone when the "voice.tone.country" is configured as Custom.
|
||||
#The value format: Frequency/Duration.
|
||||
|
|
|
|||
|
|
@ -592,7 +592,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -332,8 +332,7 @@ voice.jib.max =
|
|||
voice.jib.normal =
|
||||
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
|
||||
#Customize the tone when the "voice.tone.country" is configured as Custom.
|
||||
#The value format: Frequency/Duration.
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -512,7 +512,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -514,7 +514,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -0,0 +1,91 @@
|
|||
<YealinkIPPhoneDirectory>
|
||||
{foreach $contacts as $row}
|
||||
{if $smarty.get.contacts == "users" && $row.category == "users"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_organization && $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_organization}, {$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_organization && $row.contact_name_given == "" && $row.contact_name_family == ""}
|
||||
<Name>{$row.contact_organization}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family && $row.contact_organization == ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given}
|
||||
<Name>{$row.contact_name_given}</Name>
|
||||
{elseif $row.contact_name_family}
|
||||
<Name>{$row.contact_name_family}</Name>
|
||||
{/if}
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "groups" && $row.category == "groups"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_organization && $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_organization}, {$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_organization && $row.contact_name_given == "" && $row.contact_name_family == ""}
|
||||
<Name>{$row.contact_organization}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family && $row.contact_organization == ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given}
|
||||
<Name>{$row.contact_name_given}</Name>
|
||||
{elseif $row.contact_name_family}
|
||||
<Name>{$row.contact_name_family}</Name>
|
||||
{/if}
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "extensions" && $row.category == "extensions"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_name_given}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{else}
|
||||
<Name>{$row.effective_caller_id_name}</Name>
|
||||
{/if}
|
||||
{if $row.phone_number}
|
||||
<Telephone>{$row.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$row.phone_extension}</Telephone>
|
||||
{/if}
|
||||
</DirectoryEntry>
|
||||
{elseif $smarty.get.contacts == "all"}
|
||||
<DirectoryEntry>
|
||||
{if $row.contact_organization && $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_organization}, {$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_organization && $row.contact_name_given == "" && $row.contact_name_family == ""}
|
||||
<Name>{$row.contact_organization}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family && $row.contact_organization == ""}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given && $row.contact_name_family}
|
||||
<Name>{$row.contact_name_given} {$row.contact_name_family}</Name>
|
||||
{elseif $row.contact_name_given}
|
||||
<Name>{$row.contact_name_given}</Name>
|
||||
{elseif $row.contact_name_family}
|
||||
<Name>{$row.contact_name_family}</Name>
|
||||
{/if}
|
||||
{if isset($row.numbers)}
|
||||
{foreach $row.numbers as $number}
|
||||
{if $number.phone_number}
|
||||
<Telephone>{$number.phone_number}</Telephone>
|
||||
{else}
|
||||
<Telephone>{$number.phone_extension}</Telephone>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{else}
|
||||
<Telephone>{$row.phone_extension}</Telephone>
|
||||
{/if}
|
||||
</DirectoryEntry>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</YealinkIPPhoneDirectory>
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<root_favorite_set>
|
||||
<item id_name="localdirectory" display_name="Local Directory" priority="2" enable="0" />
|
||||
<item id_name="history" display_name="History" priority="3" enable="1" />
|
||||
<item id_name="networkcalllog" display_name="Network CallLog" priority="4" enable="0" />
|
||||
<item id_name="remotedirectory" display_name="Remote Phone Book" priority="5" enable="1" />
|
||||
<item id_name="ldap" display_name="LDAP" priority="1" enable="0" />
|
||||
<item id_name="networkdirectory" display_name="Network Directory" priority="6" enable="0" />
|
||||
</root_favorite_set>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0"?>
|
||||
<root_super_search>
|
||||
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
|
||||
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
|
||||
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
|
||||
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
|
||||
</root_super_search>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
#!version:1.0.0.1
|
||||
## The header above must appear as-is in the first line
|
||||
|
||||
include:config "y000000000116.cfg"
|
||||
include:config "{$mac}.cfg"
|
||||
|
||||
overwrite_mode = {$yealink_overwrite_mode}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -593,7 +593,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -514,7 +514,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -593,7 +593,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -554,7 +554,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -593,7 +593,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -343,8 +343,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -552,7 +552,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -511,7 +511,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -511,7 +511,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -511,7 +511,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -384,8 +384,7 @@ voice.jib.normal =
|
|||
## Tones ##
|
||||
#######################################################################################
|
||||
#Define the voice tone, the valid values can be Custom (default) or voice tone of different countries. For example, United States, France, Germany and so on.
|
||||
#voice.tone.country = Custom
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -552,7 +552,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -511,7 +511,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -552,7 +552,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -511,7 +511,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -518,7 +518,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -582,7 +582,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -582,7 +582,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -517,7 +517,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -582,7 +582,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -400,7 +400,7 @@ voice.jib.normal = {$yealink_jib_normal}
|
|||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -581,7 +581,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -403,7 +403,7 @@ voice.jib.normal = {$yealink_jib_normal}
|
|||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -400,7 +400,7 @@ voice.jib.normal = {$yealink_jib_normal}
|
|||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -453,7 +453,7 @@ voice.jib.normal = {$yealink_jib_normal}
|
|||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -516,7 +516,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -575,7 +575,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -576,7 +576,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -576,7 +576,7 @@ voice.tone.congestion =
|
|||
voice.tone.busy =
|
||||
voice.tone.ring =
|
||||
voice.tone.dial =
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.side_tone =
|
||||
features.partition_tone =
|
||||
voice.tone.secondary_dial=
|
||||
|
|
|
|||
|
|
@ -388,7 +388,7 @@ voice.jib.normal =
|
|||
#######################################################################################
|
||||
## Tones ##
|
||||
#######################################################################################
|
||||
voice.tone.country =
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -453,7 +453,7 @@ bw_phonebook.call_log_enable = 0
|
|||
#######################################################################################
|
||||
## Tone ##
|
||||
#######################################################################################
|
||||
voice.tone.country = Custom
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -453,7 +453,7 @@ bw_phonebook.call_log_enable = 0
|
|||
#######################################################################################
|
||||
## Tone ##
|
||||
#######################################################################################
|
||||
voice.tone.country = Custom
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -467,7 +467,7 @@ voice.jib.normal= {$yealink_jib_normal}
|
|||
#######################################################################################
|
||||
## Tone ##
|
||||
#######################################################################################
|
||||
voice.tone.country = Custom
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -467,7 +467,7 @@ voice.jib.normal= {$yealink_jib_normal}
|
|||
#######################################################################################
|
||||
## Tone ##
|
||||
#######################################################################################
|
||||
voice.tone.country = Custom
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
|
|
@ -466,7 +466,7 @@ voice.jib.normal= {$yealink_jib_normal}
|
|||
#######################################################################################
|
||||
## Tone ##
|
||||
#######################################################################################
|
||||
voice.tone.country = Custom
|
||||
voice.tone.country = {$yealink_voice_tone_country}
|
||||
voice.tone.dial =
|
||||
voice.tone.ring =
|
||||
voice.tone.busy =
|
||||
|
|
|
|||
Loading…
Reference in New Issue