search for: directoryentry

Displaying 9 results from an estimated 9 matches for "directoryentry".

Did you mean: directory_entry
2005 Feb 02
0
ExtensionState problems using Manager.conf API
...8, 9);//THESE ARE THE TWO DIGITS AFTER "STATUS:" $fs = trim($fr);//HERE I TRIM OFF THE WHITE SPACE IF THE NUMBER IS NOT NEGATIVE switch($fs)//HERE I RUN A SWITCH FUNCTION AND EACH CASE CORRESPONDES TO THE VALUE FROM THE STATUS AND PRINTS THE XML ACCORDINGLY { case -1: print("\t<DirectoryEntry>\n"); print("\t\t<Name>"); print("$name is Unavailable"); print("</Name>\n"); print("\t\t<Telephone>"); print("$phone"); print("</Telephone>\n"); print("\t</DirectoryEn...
2007 Sep 04
1
Cisco 79xx XML Apps (was: Re: Cisco Directory Format)
...on it. I am working with > a > > 7970 on Asterisk 1.4.8. > 7940 and 7960 use this format of XML file (probably the same on 7970) > > <CiscoIPPhoneDirectory> > <Title>Employee directory</Title> > <Prompt>Open Source Rock</Prompt> > <DirectoryEntry> > <Name>Employee A</Name> > <Telephone>7001</Telephone> > </DirectoryEntry> > <DirectoryEntry> > <Name>Employee B</Name> > <Telephone>7002</Telephone> > </DirectoryEntry> > </Cisco...
2011 Jul 23
2
[LLVMdev] Build of latest llvm gives warning and error
...ing/VersionControl/llvm/tools/clang/unittests/Basic/FileManagerTest.cpp:100:3: warning: passing NULL to non-pointer argument 3 of 'static testing::AssertionResult testing::internal::EqHelper<true>::Compare(const char*, const char*, const T1&, T2*) [with T1 = int, T2 = const clang::DirectoryEntry]' C:/Programming/VersionControl/llvm/tools/clang/unittests/Basic/FileManagerTest.cpp:100:3: warning: passing NULL to non-pointer argument 3 of 'static testing::AssertionResult testing::internal::EqHelper<true>::Compare(const char*, const char*, const T1&, T2*) [with T1 = int,...
2004 Apr 01
4
CISCO 7940 and directory/services problem
...SIP<MyPhonesMAC>.cnf with an entry like: messages_uri: "3123" The directory_url must point to a valid web page containing xml statements like: <CiscoIPPhoneDirectory> <Title>IP Telephony Directory</Title> <Prompt>People reachable via VoIP</Prompt> <DirectoryEntry> <Name>Wife</Name> <Telephone>3005</Telephone> </DirectoryEntry> <DirectoryEntry> <Name>GirlFriend</Name> <Telephone>3006</Telephone> </DirectoryEntry> </CiscoIPPhoneDirectory> Each time you press the C7940's "Dir...
2011 Jul 24
0
[LLVMdev] Build of latest llvm gives warning and error
...ol/llvm/tools/clang/unittests/Basic/FileManagerTest.cpp:100:3: > warning: passing NULL to non-pointer argument 3 of 'static > testing::AssertionResult > testing::internal::EqHelper<true>::Compare(const char*, const char*, > const T1&, T2*) [with T1 = int, T2 = const clang::DirectoryEntry]' yes, they are annoying aren't they. They all come from google's unittest library. I think it is best to fix them upstream at google. > and this error: > > 1) sample.c > > "llvm[4]: Compiling sample.c for Debug+Asserts build > C:/Programming/VersionControl/ll...
2018 Apr 20
4
access domain via ldap failed
Er,there it is. I want to use samba to build a domain. I want to join computers into this domain. And I need to access this domain to get sid of computers in the domain, using C# class DirectoryEntry as 'ldap://my domain info' in my another program. ---- On Fri, 20 Apr 2018 01:27:54,"Rowland Penny via samba" <samba at lists.samba.org> wrote: >On Fri, 20 Apr 2018 01:03:40 +0800 (CST) >Ryan <ryanyang51 at 163.com> wrote: > >> So bath samba 4.7.6 an...
2007 Jul 12
0
No subject
..."<Telephone>".key($ssd_array)."</Telephone>\n"; } next($ssd_array); } =20 sort ($directory); =20 echo "<CiscoIPPhoneDirectory>\n"; echo "<Title>".$dirname."</Title>\n"; foreach ($directory as $v) { echo "\n<DirectoryEntry>\n"; echo $v; echo "</DirectoryEntry>\n"; } echo "\n<Prompt>Choose Name and Press Dial</Prompt>\n"; echo "</CiscoIPPhoneDirectory>\n"; ?> =20 Speeddials.conf ;System Speed Dial File ;This is used in conjuction with speeddial.php....
2018 Apr 19
2
access domain via ldap failed
So bath samba 4.7.6 and 4.8.0 hava this problem. Can it be comfirmed to be a bug? If so, it seems to be an important issue that should be resolved as an important function of a DC. Up to now I only have samba 4.5.x that work normal. But 4.5.x won't have new version any more. While I want to keep my samba to be the newest security version. Hope this problem get resolved soon. Thanks for your
2011 Jul 26
3
[LLVMdev] [PATCH][RFC] upgrade to googletest 1.6.0 (was Re: Build of latest llvm gives warning and error)
...ang/unittests/Basic/FileManagerTest.cpp:100:3: >> warning: passing NULL to non-pointer argument 3 of 'static >> testing::AssertionResult >> testing::internal::EqHelper<true>::Compare(const char*, const char*, >> const T1&, T2*) [with T1 = int, T2 = const clang::DirectoryEntry]' > > yes, they are annoying aren't they.  They all come from google's unittest > library.  I think it is best to fix them upstream at google. We're using googletest 1.5.0. These warnings seem to be fixed in 1.6.0, so here's a patch to upgrade us. Disclaimer: I've...