similar to: Is there a function that can test if a path is in a directory or one of its sub-directory (recursively)?

Displaying 20 results from an estimated 400 matches similar to: "Is there a function that can test if a path is in a directory or one of its sub-directory (recursively)?"

2008 Dec 04
1
Bug#502123: [PATCH] Re: xen-hypervisor-unstable-amd64: Post update from 3.2 -> 3.3, initrd which previously worked fails
tag 502123 patch severity 502123 serious thanks Confirmed. This regression was introduced by a copy-and-paste error in debian/patches/tools-python-xen-xm-relative-path.diff (svn://svn.debian.org/pkg-xen -r531). Please apply this fix. --- debian/changelog 2008-12-04 16:50:04.000000000 -0500 +++ debian/changelog 2008-12-04 16:59:09.000000000 -0500 @@ -1,3 +1,10 @@ +xen-unstable
2009 Jun 14
0
Bug#502123: xen-utils-unstable: Debian patch breaks paravirtualized guest initrd
Now this buggy patch has been copied from xen-unstable into xen-3 svn (r625): http://svn.debian.org/wsvn/pkg-xen/trunk/xen-3/debian/patches/tools-python-xen-xm-relative-path.diff?op=file Please, please, please, please fix it before releasing a broken xen 3.4.0 into Debian. --- xen-3/debian/patches/tools-python-xen-xm-relative-path.diff +++
2011 Mar 29
1
Get phone number from SIP header PAI
Hello list, I want to get the phone number out of the following P-Asserted-Identity header : /"BlaBlaBla" <sip://88779922//@192.168.8.10;user=phone>"/ I do the following in the dialplan : /exten => _XXX.,n,Set(PY=${SIP_HEADER(P-Asserted-Identity)}) exten => _XXX.,n,Set(PY2=${CUT(PY,@,1)})/ This gives me : /"BlaBlaBla" <sip://88779922/ How can I
2020 Oct 13
2
[RFC] Python 2 / Python 3 status, final step(s)
Hi Folks, Now that LLVM 11.0.0 has been released, it's time to prepare for the final step envisionned in the previous RFC named *[RFC] Python 2 / Python 3 status* [0], ie. requiring Python3.6 for LLVM 12.0.0, to be released in 2021. At least Fedora already only ships Python3 and we didn't have much bugs reported wrt. Python compatibility for the LLVM toolchain. Indeed, all Python scripts
2011 Oct 03
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
How about this: for (int i = 0; i != NumWChars; ++i) absPath[i] = std::tolower(absPath[i], std::locale()); seems to be working just fine? On Mon, Oct 3, 2011 at 9:27 PM, Bryce Cogswell <bryceco at gmail.com> wrote: > Right, but maybe if you switch to using tolower_l() and pass an appropriate > locale you can get it to work the same way. I'm not sure what locale that
2009 Sep 22
1
[PATCH] edit-livecd in python
This is the second generation of the edit-livecd tool that replaces our original bash script with a python version and aims to reuse as much as the livecd-creator libraries as possible. The main reason for the new creator class is to avoid the need for a kisckstart file in order to edit an existing livecd image. edit-livecd is useful for people who don't have the development and yum
2011 Oct 03
2
[LLVMdev] [cfe-dev] Unicode path handling on Windows
Am 03.10.2011 22:12, schrieb Nikola Smiljanic: > How about this: > > for (int i = 0; i != NumWChars; ++i) > absPath[i] = std::tolower(absPath[i], std::locale()); > > seems to be working just fine? You have two assumptions here: Assumption 1: For each lowercase character, there is an equivalent uppercase character, and vice versa. This is not true in half a dozen
2005 Nov 09
0
mozilla and roming profiles... THE SOLUTION
This solution is not mine, but its tested and works. Great thanks to my buddy @ four elements Hope its usefull for somebody over here. ================================ mainlocation ================================ %userprofile%\Application data\Mozilla\Profiles\%profile%\%salted%\... %userprofile% = C:\Documents and settings\%username% %profile% = "default" %salted% =
2008 Dec 15
1
Bug#502123: [PATCH] Re: xen-hypervisor-unstable-amd64: Post update from 3.2 -> 3.3, initrd which previously worled fails
retitle 502123 xen-utils-unstable: Debian patch breaks paravirtualized guest initrd thanks I see that this bug is still present in pkg-xen svn: http://svn.debian.org/wsvn/pkg-xen/trunk/xen-unstable/debian/patches/tools-python-xen-xm-relative-path.diff?op=file Perhaps I wasn?t clear how severe this problem is. Using the current Debianized xen-utils-unstable, it is impossible to boot any
2011 Oct 03
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
On 10/03/2011 11:59 PM, Joachim Durchholz wrote: > Am 03.10.2011 22:12, schrieb Nikola Smiljanic: >> How about this: >> >> for (int i = 0; i != NumWChars; ++i) >> absPath[i] = std::tolower(absPath[i], std::locale()); >> >> seems to be working just fine? > > You have two assumptions here: > > Assumption 1: For each lowercase character,
2013 Mar 30
0
I am having problems installing the latest samba4 git checkout as of 3/30/13
I am having problems installing the latest samba4 git checkout as of 3/30/13 I keep getting this error message when trying to install samba4 it says: checking project rules ... Project rules pass [ 1/4152] Generating replace.vscript [ 2/4152] Generating interfaces.vscript [ 3/4152] Generating talloc.vscript [ 4/4152] Generating pytalloc-util.vscript [ 5/4152] Generating tevent.vscript [
2017 Jan 29
0
classic upgrade fails with 4.6-test
On Sun, 29 Jan 2017 17:07:39 -0500 Sonic <sonicsmith at gmail.com> wrote: > On Sun, Jan 29, 2017 at 4:54 PM, Rowland Penny <rpenny at samba.org> > wrote: > > > When you built Samba, did you use the '--with-ntvfs-fileserver' or > > '--enable-selftest' options with configure ? > > > > I used '--without-ntvfs-fileserver'. OK,
2011 Oct 04
2
[LLVMdev] [cfe-dev] Unicode path handling on Windows
That should be fine. I don't believe the concern about performing a char-by-char conversion is valid; for example the NTFS-3G driver uses a simplistic upcase table and seems to work fine. I suspect Windows does the same. On Oct 3, 2011, at 1:12 PM, Nikola Smiljanic wrote: > How about this: > > for (int i = 0; i != NumWChars; ++i) > absPath[i] = std::tolower(absPath[i],
2013 Jul 10
1
Bug#716394: [Mayhem] Bug report on xcp-storage-managers: tp crashes with exit status 139
Package: xcp-storage-managers Version: 0.1.1-3.1 Severity: normal User: mayhem at forallsecure.com Usertags: mayhem tp crashes with exit status 139. We confirmed the crash by re-running it in a fresh debian unstable installation. The attachment [1] contains a testcase (under ./crash) crashing the program. It ensures that you can easily reproduce the bug. Additionally, under ./crash_info/, we
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
Putting these out for feedback and comments. These will eventually support the new newt/python based ui for installation/configuration storage.py functions will be moved under a class for better data portability before final version --- scripts/ovirtfunctions.py | 672 +++++++++++++++++++++++++++++++++++++++++++++ scripts/storage.py | 451 ++++++++++++++++++++++++++++++ 2 files
2013 Jun 27
0
Bug report on xen-utils-4.1: qemu-dm crashes with exit status 1
On Wed, Jun 26, 2013 at 01:48:03PM -0400, Alexandre Rebert wrote: > We found a crash in qemu-dm contained in the xen-utils-4.1 package. You are being > contacted because your are listed as one of the maintainer of xen-utils-4.1. xen-utils-4.1 is not in unstable, so this is not really helpful. > The bug report that will be submitted to the bug tracker is available at the > following
2013 Jul 10
0
Bug#716496: [Mayhem] Bug report on xen-utils-4.1: xenbaked crashes with exit status 139
Package: xen-utils-4.1 Version: 4.1.4-4 Severity: normal User: mayhem at forallsecure.com Usertags: mayhem xenbaked crashes with exit status 139. We confirmed the crash by re-running it in a fresh debian unstable installation. The attachment [1] contains a testcase (under ./crash) crashing the program. It ensures that you can easily reproduce the bug. Additionally, under ./crash_info/, we
2013 Jul 10
0
Bug#716497: [Mayhem] Bug report on xen-utils-4.1: xenctx crashes with exit status 139
Package: xen-utils-4.1 Version: 4.1.4-4 Severity: normal User: mayhem at forallsecure.com Usertags: mayhem xenctx crashes with exit status 139. We confirmed the crash by re-running it in a fresh debian unstable installation. The attachment [1] contains a testcase (under ./crash) crashing the program. It ensures that you can easily reproduce the bug. Additionally, under ./crash_info/, we include
2013 Jul 10
0
Bug#716498: [Mayhem] Bug report on xen-utils-4.1: xentrace_setmask crashes with exit status 139
Package: xen-utils-4.1 Version: 4.1.4-4 Severity: normal User: mayhem at forallsecure.com Usertags: mayhem xentrace_setmask crashes with exit status 139. We confirmed the crash by re-running it in a fresh debian unstable installation. The attachment [1] contains a testcase (under ./crash) crashing the program. It ensures that you can easily reproduce the bug. Additionally, under ./crash_info/,
2013 Jul 10
0
Bug#716499: [Mayhem] Bug report on xen-utils-4.1: xentrace_setsize crashes with exit status 139
Package: xen-utils-4.1 Version: 4.1.4-4 Severity: normal User: mayhem at forallsecure.com Usertags: mayhem xentrace_setsize crashes with exit status 139. We confirmed the crash by re-running it in a fresh debian unstable installation. The attachment [1] contains a testcase (under ./crash) crashing the program. It ensures that you can easily reproduce the bug. Additionally, under ./crash_info/,