Moving & Cloning subtrees (Parser V2)

I have noticed some bugs(?) in the XSLProcessor that have been
causing me some minor headaches.
I have a test harness for my XSL stylesheet that takes an XML
document and the stylesheet as arguments. This works fine. In my
application however, the XML document is constructed from a
number of different sources including other XML documents.
Anyway, the following XSL will return null if the FOO branch is
copied from another document.
given:
<FOO>hello
<BAR/></FOO>
and:
<xsl:template match="FOO">
<xsl:value-of select="BAR/.."/>
</xsl:template>
It would appear to me that the cloneNode(true) method forgets to
set the parent references.
I have managed to get around this problem so far by adding
attributes to the child so I don't have to reference the
parent...but this is not very neat.
If I am just missing something really basic, please let me know,
otherwise I think it is a bug.
Grant Jennings
null

Oracle XML Team wrote:
: Grant Jennings (guest) wrote:
: : I have noticed some bugs(?) in the XSLProcessor that have
been
: : causing me some minor headaches.
: : I have a test harness for my XSL stylesheet that takes an XML
: : document and the stylesheet as arguments. This works fine. In
: my
: : application however, the XML document is constructed from a
: : number of different sources including other XML documents.
: : Anyway, the following XSL will return null if the FOO branch
: is
: : copied from another document.
: : given:
: : <FOO>hello
: : <BAR/></FOO>
: : and:
: : <xsl:template match="FOO">
: : <xsl:value-of select="BAR/.."/>
: : </xsl:template>
: : It would appear to me that the cloneNode(true) method forgets
: to
: : set the parent references.
: : I have managed to get around this problem so far by adding
: : attributes to the child so I don't have to reference the
: : parent...but this is not very neat.
: : If I am just missing something really basic, please let me
: know,
: : otherwise I think it is a bug.
: : Grant Jennings
: Could you please provide a Java test case which reproduces the
: problem?
I was getting the correct result when I ran it in the test
harness, but incorrect results in my application. The XML was
identical, the only difference was that construction of the tree
in the application was done piecemeal, whereas the test harness
just parsed a saved version of the doc.
The latest version seems to fix the problem though. Thanks.
null

Similar Messages

  • Can't boot from clone on external firewire 800 drive

    Hello,
    I have a 24" mid-2007 iMac 7,1 running Snow Leopard. I recently changed my set up to put a clean install of OS X 10.9.1 on a partition of an external SSD. I also moved the 10.6.8 start up system to a partition on the SSD. My internal iMac hard drive now has no system folder, only my data files. I have additional firewire drives for Time Machine, other data and media drives. Finally, I just bought a pair of 3TB drives that I partitioned into enough partitions to be able to clone both operating systems and all my data files for a rotating pair of offsite backups. All moving/cloning of drives was done with version 3.5.4 (Mavericks-compatible) of Carbon Copy Cloner.
    I can boot from my external SSD (either Mavericks or Snow Leopard) fine and all external drives mount correctly in either case. After cloning all the partitions onto the backup drives, I tried to test the clones but I am not able to start up using either the Mavericks or the Snow Leopard clones when the backup external drive is connected via firewire 800. This is true whether I select the clone volumes in the Startup Disk preferences pane or hold down the option key during start up (note that the external drive with the clone partitions does not appear in the list of disk choices with the option key method). I get the "question mark in the folder" sign that the start up system is not being found.
    I have changed the order in which the external drives are connected (normally the SSD is first in the chain), including trying when only the backup drive is connected directly to the iMac. I get the same result no matter what.
    Curiously, the Mavericks and Snow Leopard boot clones start up via firewire 800 when the external backup drive is connected to my wife's 2009 13" Macbook Pro, indicating that the clones and the enclosure (an OWC Mercury Elite Pro quad interface, newer version with USB3) both support booting. Furthermore, if I connect the backup drive to my iMac using USB, the boot clones both work to start up the iMac.
    This all points to an issue with the firewire bus failing to recognize the boot clones somehow during my iMac's start up process. I am rather puzzled about how to fix this.
    I can get by booting via USB in an emergency but because my system is old, this is of course USB2 so its slow. If I had to use the clones to recover I'd rather be able to operate and restore at FW800 speeds.
    If anyone has any ideas what might be going on, I'd appreciate hearing them.
    Thanks in advance.
    Greg

    Did you ever get this resolved, Greg?

  • Restoring itunes songs kep on external hard drive

    hi all - some time ago on my power pc mac I put my entire itunes songs on an external drive, whilst keeping the song details on the computer. My power pc gave up the ghost and I transferred the contents of the old power pc mac to my new intel imac. The problem is that the intel mac cannot read the external hard drive and therefore cannot play the songs. Thankfully all the songs were backed up onto my time capsule and I have them all on the next intel mac - it is just that the computer cannot read the correct path to match the songs to the titles. Any advice? No data has been lost - I just want to avoid spending hours recreating my playlists etc.

    Lewis,
    I truly hope you have your current working iTunes Library and music files still on the original PC. From what I read of your process, you did not backup the music files at all.
    There is little need to backup the iTunes Program Files as long as you have the installer file available (or can download the most current one from Apple).
    Here is a link for my method to Completely Backup iTunes.
    This is somewhat similar, but helps with moving (cloning) iTunes to another PC: Move (Clone) Your iTunes
    Give them a read over and post back here with any questions.

  • Help with parsing a text string in address book and moving it to 'related person' field

    I am wanting to make a little applescript that will go thru my contacts and find data in the NOTES field and parse it slightly and move it to another field.  (sorry if parsing isn't the right word here)
    The data to be found is a GPS coordinate with this EXACT format:
    <Lat:12.345678><Lon:-12.345678>
    ...the only thing different from this example is the digits, and the number of digits.
    What I want to end up doing is deleting this data from the NOTES field, but leaving any other data, (this part sounds difficult to do to, to me!)
    And moving it to a related person field with the label gps, and the coordinate now reading exactly:
    12.345678,-12.345678
    (FYI, you can copy/paste a coordinate like this very fast into the maps app on iPhone and locate it instantly)
    Thanks for the help on this
    If this is too complicated I can break up the process into steps.  I know how to do some of it, but not sure about the parsing, and then delete just part of the notes field...
    Thanks!

    Hi,
    This script work here, try it :
    tell application "Address Book"
        repeat with thisContact in (get people)
            set tNote to note of thisContact
            if tNote is not missing value and "<Lat:" is in tNote and "<Lon:" is in tNote then
                set {GPS_value, newNote} to my getGPS_coordinate(tNote)
                if newNote is not "" then -- no error
                    set gpsField to (related names of thisContact whose its label = "gps")
                    if gpsField is not {} then
                        set value of (item 1 of gpsField) to GPS_value
                    else -- field "gps" is empty
                        make new related name at end of related names of thisContact with properties {label:"gps", value:GPS_value}
                    end if
                    set note of thisContact to newNote
                end if
            end if
        end repeat
        save
    end tell
    on getGPS_coordinate(this_note)
        set oldTid to text item delimiters
        set {tLat, tLon, newNote} to {"", "", ""}
        try
            set text item delimiters to "<Lat:"
            set tLat to text item 2 of this_note
            set text item delimiters to "<Lon:"
            set tLon to text item 2 of this_note
            set text item delimiters to ">"
            set {tLat, tLon} to {text item 1 of tLat, text item 1 of tLon} -- get values (lat... and long...)
            set text item delimiters to "<Lat:" & tLat & "><Lon:" & tLon & ">"
            set this_note to text items of this_note
            set text item delimiters to " "
            set newNote to this_note as string -- delete GPS coordinate in this note
        end try
        set text item delimiters to oldTid
        return {tLat & "," & tLon, newNote}
    end getGPS_coordinate

  • Moving a cloned Aperture library

    I recently cloned my iMac's hard drive with SuperDuper to an external drive before doing a Time Machine restore of my entire iMac drive. The restore went fine but I forgot that Time Machine doesn't back up my Aperture 3 library (I understand TM backups while Aperture is open can cause problems). So the TM restore wiped out my Ap library.
    I tried to copy the cloned Ap library on the external drive back to the main drive but mid-way I get a permissions problem. I'm sure this issue is caused by cloning, but I'm not sure how to solve it. I tried changing the permissions inside the Aperture lib folders but to no avail. I do have a vault that's about a week old that I can use to restore, but I'd rather use the cloned version if possible since it's current. Alternatively, I am able to open the cloned library; I suppose I could export all the projects into a new library on my main drive, but it's a big library (16gb or so, referenced) and I think it will take forever. Would it be faster to make a vault from the cloned library and do a restore on my main drive (something I've never done)? Or is there some straightforward way to copy my cloned library back to my main drive?

    Hi Chez
    The following might work for you...
    1) Right-click on the cloned Library file on your external drive.
    2) Choose Compress "Aperture Library". This will produce a compressed version of the Library in a zip file.
    (I did this on my iMac at the weekend before carrying out my Aperture 3.1 upgrade. Just under 6000 referenced images have my ApLib file at 8.8GB. The zipped file is 6.5 GB and took somewhere between 45 minutes to an hour to complete compressing. Your iMac has a more powerful processor, but your library file is a bit bigger. You're probably looking at about an hour to an hour and a half. NB you'll require enough free space on your external drive to accomodate the new compressed file, which will probably be about 12GB or so, if mine was anything to go by. Ideally you'll have a lot more free.)
    3) Drag the zip file back over to your Pictures folder. (This should go a heck of a lot faster than dragging the library itself ever would. That's because you'll be dragging a single huge file, rather than a hundred thousand small files - there's less overhead.)
    4) Rename your broken Library file. (You might just want to keep it around until you're back up and running again.)
    5) Double-click the zip file - it will decompress and create a replacement "Aperture Library" file. (That's why you rename the old one.)
    6) Launch Aperture and run the maintenance described below. You'll definitely want to repair Permissions on the library - and that might be enough to solve your problems. If not, step up to the Repair Database step. If that's not enough, go the whole way and try the Rebuild Database.
    http://support.apple.com/kb/HT3805
    All being well, you'll be back up and running after that. All told, you're probably talking about a couple of hours - and much of that is just kicking things off and letting them run in the background. If you follow these steps and it fails, you'll still have your cloned copy intact on the external drive.
    Good luck!

  • Cloning/Moving webpart pages with existing webparts

    Hi All,       
            We need to support clone/move of the webpart pages with pre populated webparts. We have our custom webpart page layout. Users can create webpart page using our custom page layout and can add webparts init. On cloning
    of the webpart page we just read the file(webpart page) from the document libary and saving it with different name in the same document library. But the cloned page does not retain the webparts added to it. The user can view only the empty webpart page layout.
    Please suggest me how to move/clone the webpart page with the existing webparts.
    Thanks,
    R.Prakash

    Hi Florin,
                Thanks a lot for your help.
                Based on your suggestion we completed the cloning of the WebPart pages.
    Code snippet:
    SPSecurity.RunWithElevatedPrivileges(delegate()
                    using (SPSite site = new SPSite(SPContext.Current.Site.ID))
                        using (SPWeb web = site.OpenWeb())
                            SPLimitedWebPartCollection lstWebPart = null;
                            web.AllowUnsafeUpdates = true;
                            using (SPLimitedWebPartManager webPartManager =
                                        SPContext.Current.Web.GetLimitedWebPartManager("Pages/BaseWebPartPage.aspx, 
    PersonalizationScope.Shared))
                                lstWebPart = webPartManager.WebParts;
                            using (SPLimitedWebPartManager webPartManager =
                                         SPContext.Current.Web.GetLimitedWebPartManager("Pages/ClonedWebPartPage.aspx, PersonalizationScope.Shared))
                                foreach (WebPart webPart in lstWebPart)
        webPartManager.AddWebPart(webPart, webPart.Zone.Id, webPart.ZoneIndex);
                                    web.Update();
                            web.AllowUnsafeUpdates = false;
    Thanks,
    R.Prakash

  • Cloning help: Moving to a newer computer

    I want to clone my Late 2008 MacBook Pro drive to my new Late 2010 MacBook Pro.
    What I cannot understand is how do I get the drivers needed for the new 2010 MacBook into the clone that holds everything needed for the Late 2008 MacBook?
    Carbon Copy Cloner or Super Duper - what do you wonderful pros use?
    Much appreciated.

    While clones are great generally in your current situation all you want to move from the old to the new are the user files, data and applications NONE of the System stuff or it will mess things up badly.
    So, on the new machine upgrade the drive and then install a clean version of the newest OS you have, ideally Snow Leopard and then run Software Update to get it up to date and then run Disc Utility and repair permissions.
    Once all that's done connect the new to the old with a Firewire cable and restart the old one while holding down T (target disc mode) so it appears on the new one's Desktop. Finally run Migration Assistant and select all the items to move across to your new drive. This is your best path honestly and even if something goes amiss your original is still intact for later copying.

  • Failed boot after moving hard drive (IDE not SATA)

    Greetings all.
    I am attempting to setup a headless box, and in doing so I am installing Arch on one system (Sapphire Axion A3-M275 Motherboard), then moving the hard drive to the new system (SGS1660, a VIA CLE266/VT8235 based headless rack-solution). After moving the drive into the SGS1660, the system fails to boot. Attached output from the Serial Console:
    Booting 'Arch Linux'
    root (hd0,0)
    Filesystem type is ext2fs, partition type 0x83
    kernel /vmlinuz26 root=/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b r
    o console=ttyS0,115200
    [Linux-bzImage, setup=0x3600, size=0x1ad6d0]
    initrd /kernel26.img
    [Linux-initrd @ 0x2ff21000, 0x9e7a5 bytes]
    Linux version 2.6.30-ARCH (root@T-POWA-LX) (gcc version 4.4.0 20090630 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jul 20 11:20:32 UTC 2009
    KERNEL supported cpus:
    Intel GenuineIntel
    AMD AuthenticAMD
    NSC Geode by NSC
    Cyrix CyrixInstead
    Centaur CentaurHauls
    Transmeta GenuineTMx86
    Transmeta TransmetaCPU
    UMC UMC UMC UMC
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000002ffd0000 (usable)
    BIOS-e820: 000000002ffd0000 - 000000002ffde000 (ACPI data)
    BIOS-e820: 000000002ffde000 - 0000000030000000 (ACPI NVS)
    BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved)
    DMI 2.3 present.
    AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    last_pfn = 0x2ffd0 max_arch_pfn = 0x100000
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Scanning 0 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009fc00 (usable)
    modified: 000000000009fc00 - 00000000000a0000 (reserved)
    modified: 00000000000e0000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 000000002ffd0000 (usable)
    modified: 000000002ffd0000 - 000000002ffde000 (ACPI data)
    modified: 000000002ffde000 - 0000000030000000 (ACPI NVS)
    modified: 00000000fec00000 - 00000000fec01000 (reserved)
    modified: 00000000ff780000 - 0000000100000000 (reserved)
    init_memory_mapping: 0000000000000000-000000002ffd0000
    RAMDISK: 2ff21000 - 2ffbf7a5
    ACPI: RSDP 000f6ad0 00014 (v00 ACPIAM)
    ACPI: RSDT 2ffd0000 0002C (v01 A M I OEMRSDT 09000521 MSFT 00000097)
    ACPI: FACP 2ffd0200 00084 (v02 A M I OEMFACP 09000521 MSFT 00000097)
    ACPI: DSDT 2ffd0390 03270 (v01 MiniV MiniV080 00000080 INTL 02002026)
    ACPI: FACS 2ffde000 00040
    ACPI: OEMB 2ffde040 00046 (v01 A M I AMI_OEM 09000521 MSFT 00000097)
    0MB HIGHMEM available.
    767MB LOWMEM available.
    mapped low ram: 0 - 2ffd0000
    low ram: 0 - 2ffd0000
    node 0 low ram: 00000000 - 2ffd0000
    node 0 bootmap 00011000 - 00016ffc
    (9 early reservations) ==> bootmem [0000000000 - 002ffd0000]
    #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
    #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
    #3 [0000100000 - 0000626e44] TEXT DATA BSS ==> [0000100000 - 0000626e44]
    #4 [002ff21000 - 002ffbf7a5] RAMDISK ==> [002ff21000 - 002ffbf7a5]
    #5 [0000099c00 - 0000100000] BIOS reserved ==> [0000099c00 - 0000100000]
    #6 [0000627000 - 0000629230] BRK ==> [0000627000 - 0000629230]
    #7 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000]
    #8 [0000011000 - 0000017000] BOOTMAP ==> [0000011000 - 0000017000]
    Zone PFN ranges:
    DMA 0x00000010 -> 0x00001000
    Normal 0x00001000 -> 0x0002ffd0
    HighMem 0x0002ffd0 -> 0x0002ffd0
    Movable zone start PFN for each node
    early_node_map[2] active PFN ranges
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x0002ffd0
    Using APIC driver default
    ACPI: PM-Timer IO Port: 0x808
    SMP: Allowing 1 CPUs, 0 hotplug CPUs
    No local APIC present or hardware disabled
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Allocating PCI resources starting at 40000000 (gap: 30000000:cec00000)
    NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    PERCPU: Embedded 11 pages at c1606000, static data 24444 bytes
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 194911
    Kernel command line: root=/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b ro console=ttyS0,115200
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    NR_IRQS:512
    PID hash table entries: 4096 (order: 12, 16384 bytes)
    Fast TSC calibration using PIT
    Detected 1326.894 MHz processor.
    Console: colour dummy device 80x25
    console [ttyS0] enabled
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Initializing HighMem for node 0 (00000000:00000000)
    Memory: 772708k/786240k available (2905k kernel code, 12976k reserved, 1052k data, 392k init, 0k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff4e000 - 0xfffff000 ( 708 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf07d0000 - 0xff7fe000 ( 240 MB)
    lowmem : 0xc0000000 - 0xeffd0000 ( 767 MB)
    .init : 0xc04e3000 - 0xc0545000 ( 392 kB)
    .data : 0xc03d647f - 0xc04dd6a8 (1052 kB)
    .text : 0xc0100000 - 0xc03d647f (2905 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Calibrating delay loop (skipped), value calculated using timer frequency.. 2654.36 BogoMIPS (lpj=4422980)
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: L1 I Cache: 64K (32 bytes/line), D cache 64K (32 bytes/line)
    CPU: L2 Cache: 64K (32 bytes/line)
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Freeing SMP alternatives: 10k freed
    ACPI: Core revision 20090320
    ACPI: setting ELCR to 0200 (from 8c20)
    weird, boot CPU (#0) not listed by the BIOS.
    SMP motherboard not detected.
    Local APIC not detected. Using dummy APIC emulation.
    SMP disabled
    Brought up 1 CPUs
    Total of 1 processors activated (2654.36 BogoMIPS).
    net_namespace: 1056 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: PCI BIOS revision 2.10 entry at 0xf0031, last bus=1
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using PIC for interrupt routing
    ACPI: Power Resource [URP1] (off)
    ACPI: Power Resource [URP2] (off)
    ACPI: Power Resource [FDDP] (off)
    ACPI: Power Resource [LPTP] (off)
    ACPI: No dock devices found.
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:07.0: PME# disabled
    pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:10.0: PME# disabled
    pci 0000:00:10.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:10.1: PME# disabled
    pci 0000:00:10.2: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:10.2: PME# disabled
    HPET not enabled in BIOS. You might try hpet=force boot option
    pci 0000:00:11.0: quirk: region 0800-087f claimed by vt8235 PM
    pci 0000:00:11.0: quirk: region 0400-040f claimed by vt8235 SMB
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 12 14 *15)
    PCI: Using ACPI for IRQ routing
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 10 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:05: ioport range 0xe900-0xe90f has been reserved
    system 00:05: ioport range 0xea00-0xea0f has been reserved
    system 00:05: ioport range 0xeb00-0xeb2f has been reserved
    system 00:05: ioport range 0xec00-0xec7f has been reserved
    system 00:05: ioport range 0xe800-0xe83f has been reserved
    system 00:07: ioport range 0x3e0-0x3e7 has been reserved
    system 00:07: ioport range 0x4d0-0x4d1 has been reserved
    system 00:07: ioport range 0x800-0x87f has been reserved
    system 00:07: ioport range 0x400-0x41f could not be reserved
    system 00:09: iomem range 0x0-0x9ffff could not be reserved
    system 00:09: iomem range 0xe0000-0xfffff could not be reserved
    system 00:09: iomem range 0x100000-0x2fffffff could not be reserved
    pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    pci 0000:00:01.0: IO window: disabled
    pci 0000:00:01.0: MEM window: 0xddd00000-0xdfdfffff
    pci 0000:00:01.0: PREFETCH window: 0x000000d5c00000-0x000000ddbfffff
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs...
    Freeing initrd memory: 633k freed
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: overridden by ACPI.
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1248948860.509:1): initialized
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1510
    alg: No test for stdrng (krng)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:00:01.0: disabling DAC on VIA PCI bridge
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    input: Macintosh mouse button emulation as /devices/virtual/input/input0
    PNP: No PS/2 controller found. Probing ports directly.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Initalizing network drop monitor service
    Freeing unused kernel memory: 392k freed
    :: Loading Initramfs
    :: Running Hook [udev]
    :: Loading udev...SCSI subsystem initialized
    pata_acpi 0000:00:11.1: can't derive routing for PCI INT A
    pata_acpi 0000:00:11.1: can't derive routing for PCI INT A
    done.
    Waiting 10 seconds for device /dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b ...
    Root device '/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b' doesn't exist, attempting to create it
    ERROR: Failed to parse block device ids for '/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b'
    ERROR: Unable to detect or create root device '/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b'
    You are being dropped to a recovery shell
    Type 'reboot' to reboot
    Type 'exit' to try and continue booting
    NOTE: klibc contains no 'ls' binary, use 'echo *' instead
    If the device '/dev/disk/by-uuid/93df0562-c6e6-4583-9a79-51cd2091247b' gets created while you are here,
    try adding 'rootdelay=10' or higher to the kernel command-line
    ramfs$
    I think what is happening is that the kernel does not have the drivers for the IDE controller on the board for the CLE266/VT8235. Does this seem accurrate? And if so, how can I verify the current kernel config, then compile a kernel with everything else Arch needs to boot properly? I am familiar with the old means of setting up a kernel using the 'make menuconfig; make; make modules_install' etc method.
    Thanks for the help in advance!

    Hi, not sure if this is still causing you an issue, but I just ran into the same problem.
    For me, I have a Sharp PC=MM1110 which has no cd drive and doesn't like to boot from USB. To get Arch installed on it, I had to attach it to another PC (via it's docking cradle, which lets it show up as a USB hard drive), then boot the other PC from an Arch install cd and select the USB hdd for all of the partitioning etc.
    When I rebooted after the installation, the Sharp wouldn't boot.
    First, I had to edit the grub menu entry to point to (hd0,0), at which point I got the error listed in the first post... Failed to parse block device id's.
    If i booted into fallback mode, it booted without a problem.
    For me, the solution to finally get it working was to boot into fallback mode, remount the filesystem as r/w, and run mkinitcpio -g filename to rebuild the kernel. Once completed all I had to do was point grub to the new kernel image and it booted ok.
    Hope this is useful to someone

  • Can any one tell me how can I move to a different folder pictures, that I've cloned, without them staying aggregated? They all come together to the other folder and I don't want that- thanks

    Can any one tell me how can I move to a different folder pictures, that I've cloned, without them staying aggregated? They all come together to the other folder and I don't want that… thanks

    There's more to it than that.
    Folders in Aperture do not hold Images.  They hold Projects and Albums.  You cannot put an Image in a Folder without putting it in a Project or an Album inside that Folder.
    The relationship between Projects and Images is special:  every Image must in a Project, and can be in only one Project.
    Images can be in as many Albums you want.  Putting an Image in an Album does not move it from the Project that holds it.
    You can make as many Versions from a Master as you want.
    What you want to do may appear simple to you, but it still much adhere to how Aperture works.  I still can't tell exactly what you are trying to do (specifically: Images don't live in Folders; moving an Image from a Folder is non-sensical).
    It can be very confusing (and frustrating) to get going with Aperture -- but it does work, and can be enormously helpful.  If you haven't, take a look at the video tutorials on Apple's Aperture support site.
    I feel as though I haven't helped you much -- but we need to be using the same names for interface items in order to get anything done -- and my sense is that you still haven't learned the names of the parts.

  • XML file in Processing not moving further

    Dear Expert,
    XML file which is continuously generating after 5 seconds in processing
    B1i Admin Console > Monitor > Message Box  > Processing , I want to stop that and move in success
    In detail I open each XML file is showing me different contain.
    Now, how to break processing mode to success ?
    In Object type i have not set any Filter
    ValueMapping    : no mapping
    Criteria Fields   :no criteria fields
    Key Handling  :4 - Closed System with Return
    Schema:/com.sap.b1i.datasync.repository/ObjectType.xsd/B1.8.8_Orders.xsd
    <?xml version="1.0" encoding="utf-8"?>
    Also getting Technical Error
    SAP iApp Explorer > Monitor > Technical Error Monitor
    IPO Step
    /0010000100.provide/com.sap.b1i.datasync.ipo/P05/P05.ipo/Provide
    Time Stamp
    20110707132803
    Error Description
    com.sap.b1i.xcellerator.Xce...com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: com.sap.b1i.bizprocessor.BizProcException: BPE001 Nested exception: com.sap.b1i.utilities.UtilException: UTE001 Nested exception: com.sap.engine.lib.xml.util.NestedException: -> com.sap.engine.lib.xml.util.NestedException: -> com.sap.engine.lib.xml.util.NestedException: Error parsing query -> java.lang.NullPointerException: while trying to invoke the method com.sap.engine.lib.xsl.xpath.ETItem.evaluate(com.sap.engine.lib.xsl.xpath.XPathContext) of an object loaded from field com.sap.engine.lib.xsl.xpath.ETObject.et of an object loaded from local variable 'q'
    Thanks
    Kevin
    Edited by: Kevin Shah on Jul 7, 2011 1:32 PM

    Hi Kevin,
    There must be some errors in your development that block B1iSN processing. You can try to debug your xsl transformation with Xsl debuggers like for example the one included inside XmlSpy.
    If you are not developing a B1 to SAP Business Suite you should consider moving your development to B1if. In B1if it is easier to develop and debug your scenarios. With the debug feature you will be able to know which step is blocking your processing very easily.
    You can see some recordings showing how to develop new scenarios with B1if in the following link (SAP user login required):
    https://psd.sap-ag.de/PEC/calendar/
    Hope it helps
    Trinidad.

  • SharePoint 2013 Search - Zip - Parser server ran out of memory - Processing this item failed because of a IFilter parser error

    Moving content databases from 2010 to 2013 August CU. Have 7 databases attached and ready to go, all the content is crawled successfully except zip files. Getting errors such as 
    Processing this item failed because of a IFilter parser error. ( Error parsing document 'http://sharepoint/file1.zip'. Error loading IFilter for extension '.zip' (Error code is 0x80CB4204). The function encountered an unknown error.; ; SearchID = 7A541F21-1CD3-4300-A95C-7E2A67B2563C
    Processing this item failed because the parser server ran out of memory. ( Error parsing document 'http://sharepoint/file2.zip'. Document failed to be processed. It probably crashed the server.; ; SearchID = 91B5D685-1C1A-4C43-9505-DA5414E40169 )
    SharePoint 2013 in a single instance out-of-the-box. Didn't install custom iFilters as 2013 supports zip. No other extensions have this issue. Range in file size from 60-90MB per zip. They contain mp3 files. I can download and unzip the file as needed. 
    Should I care that the index isn't being populated with these items since they contain no metadata? I am thinking I should just omit these from the crawl. 

    This issue came back up for me as my results aren't displaying since this data is not part of the search index.
    Curious if anyone knows of a way to increase the parser server memory in SharePoint 2013 search?
    http://sharepoint/materials-ca/HPSActiveCDs/Votrevieprofessionnelleetvotrecarrireenregistrement.zip
    Processing this item failed because the parser server ran out of memory. ( Error parsing document 'http://sharepoint/materials-ca/HPSActiveCDs/Votrevieprofessionnelleetvotrecarrireenregistrement.zip'. Document failed to be processed. It probably crashed the
    server.; ; SearchID = 097AE4B0-9EB0-4AEC-AECE-AEFA631D4AA6 )
    http://sharepoint/materials-ca/HPSActiveCDs/Travaillerauseindunequipemultignrationnelle.zip
    Processing this item failed because of a IFilter parser error. ( Error parsing document 'http://sharepoint/materials-ca/HPSActiveCDs/Travaillerauseindunequipemultignrationnelle.zip'. Error loading IFilter for extension '.zip' (Error code is 0x80CB4204). The
    function encountered an unknown error.; ; SearchID = 4A0C99B1-CF44-4C8B-A6FF-E42309F97B72 )

  • Duplicated events on iCal after moving to iCloud

    Hi, i just updated mi iphone 4 to iOS5, then updated iTunes, then updated OSX Lion to 10.7.2, then moved to icloud...
    Everything seems to be ok, but there's a problem: my events duplicated on iCal in my macbookpro...
    Every input has cloned itself!
    But, when checking on icloud and on my iphone, no duplicates!
    So... what should i do?, 'cause if i delete a duplicated event from iCal in my computer, leaving only one, the event erases at all in iCloud and in my iPhone...
    Weird.
    Any suggestions?
    I appreciate your time, thank you!

    Hi Jorge. I just went through this entire process. I was able to rid myself of duplicates, however, I am still trying to figure out how to match a hard copy to my Mac without creating duplicates.
    - Make sure you have your events on the Mac
    - Go to iCloud on phone and turn off iCloud on everything (for now). It will tell you it will delete everything off iCloud (this is fine if you have everything you need on your Mac).
    - Go into iTunes on Mac and "turn of Sync with this iPhone over Wi-fi" & check "back up to this computer"
    -Go to info tab in iTunes on Mac. Check sync "contacts" & sync "calendars"
    - While you are in the info tab also check "calendars" & "contacts" in the Replace Information on This iPhone section under Advanced.
    - Synch
    - If everything matches up properly go back to iPhone and turn iCloud back on for what you want
    - Go to iCal on Mac and in the top left hand corner there is a "calendar" button that when you click it, it shows calendars for "On my Mac" and "iCloud".
    - You can delete the "On my Mac" calendars to rid yourself of the duplicates.
    ***This is how I did it. You may be able to just delete the "On my Mac" calendars but I am not sure if that will take them off of iCloud and your iPhone. You can give it a try first as it may be less time consuming.
    So, my issue is still trying to figure out how to keep matching calendars as a backup on Mac without the duplicates. Any takers?

  • How do I recover files from a cloned but older external drive?

    A few months ago I cloned one of my external drives where I keep some of my video files.
    Shortly after that I got a new 3 TB drive, I promptly did a lot of file reorganizing within iMovie (because of misdating issues I was correcting from earlier), and also lots of new iPhoto movies had been imported. (This will screw things up later, so is relevant.)
    Then, to make things worse, after moving things within iMovie, I copied all the files from one drive to the other because one of the drives was too full.  I have lots of drives, and I had just got this HUGE drive, so I wanted to move things from the 500gb drive to my 1T drive.  I had THOUGHT everything was fine, because the visual inspection showed all the folders.  Only later did I discover that it was only the folders/directories that had copied, not the actual movies.
    And then went on vacation. While on vacation, there was a power outage, and my backup drive died. When I came back I discovered the problem. I can't even check to see if the "backup" (which I had actually made first) had the movies still because it doesn't appear to be recoverable. 
    SO, long story short, here is my question.  From my original CLONE, how do I salvage my files?  I can't just use that one instead, it didn't have all my files, since it wasn't all inclusive to start with, and I've added new files since. Also there has been an iMovie update since it was created.  Can I just open the drive and drag over the folders? Or import them somehow. 
    Sorry for being dumb, but I don't use iMovie very often. I had imported movies years ago, so long ago I don't remember how I did it, and since then iPhoto has just been bringing in my movies for me.
    Please help. I'm feeling like a very bad mom right now. I've lost everyting since 2007.

    Ok, I've been digging around while waiting, and I'm wondering if I didn't copy things wrong at all, and possibly if the issue was caused by the fact that I RENAMED the hard drive when I reorganized things, and iMovie dropped all my files because of that?  Regardless, my question is still the same.  *** do I do now?
    At this point I have 3 hard drives with files on them. 2 of them are fine. On of them has no files, but a bunch of empty events showine me where files should be.  I have a clone that has those files, along with a bunch of files I don't need because they are already on those other drives.  I don't mind having duplicates I can always delete them later.  If I boot up that clone, how do I get  those files onto my 3rd drive?

  • Moving OS from old hard drive to a new SSD

    Hi
    I have an early 2009 macpro running OS X 10.7.5 with 6GB RAM and two original hard drives (640GB and 1TB). As the system is starting to run a little slow I have just ordered an upgrade for the RAM and have also ordered a new SSD hard drive.
    My question is around moving the operating system to the new SSD.  I am assuming that the system will boot up and run much quicker if I do. 
    Whilst it is easy for me to transfer files over from one drive to another, how do I do this with all of the operating system and applications.
    Thanks in advance.

    CCC allows you to de-select user media sub-folders of your home user account.
    SSD - 50% full is a good ballpark, even more free space if it will be used for any kind of cached scratch (adobe)
    all your media and data files and libraries should not be on the boot drive even now
    SSD: 250GB $139 / 500GB $249 - Samsung EVO (I would skip the 128GB $82 model with those prices)
    Install TRIM Enabler no matter what make of SSD before you clone!
    Use the old boot drive for backup / safety net.
    Never used CCC or SD? might want to practice and try it out first just to get the feel - test and do a trial run, cloning should be a req'd backup strategy.
    Yes more RAM is a good idea, 24GB or more if you do any kind of graphics.
    The 4-core can be upgraded to 3.2GHz or a 6-core 3.33 - and upgrade firmwaere to a 5,1
    With Mavericks or Mountain Lion you have more graphic card options too.
    And there are PCIe SSD cards that while not necessary for the sytem, can make a deal of difference for scratch / graphic libraries / editing.

  • Repeated failure when time machine files moved to bigger drive...

    We are trying to copy our Time Machine archive to a bigger drive. We have done this before a couple of years ago using CarbonCopyCloner and had no serious problems. Tried it this time and it was not successful*.
    We have tried this again by following both versions of Apple's directions on moving our TM archive on an external drive to a bigger drive: drag the backups.backupdb from the old TM drive to the newly formatted larger drive OR use Disk Utility's Restore to clone old to new. Both took about 2 days to copy the 1.4TB via FW800. It again was not successful*.
    * By "not successful" what I mean is - the files copied over fine. Disk Utility verified the disk(s) were fine. I kept the name of the new drive the same as the old. When I turned Time Machine back on and verified that it was using the external archive disk I could go into Time Machine and flip back to to files archived almost a year ago - as expected. After TM ran for a while one of two things happened: either the entire archive was replaced by only the current files (eg: the history was nuked) OR or it errored out saying there was not enough space on the new drive (3TB - the previous one was 1.5TB) even though the drives being backed up totaled 1.4TB - as if the old archive was still there (but not visible) and a new one started.
    I recall seeing a post somewhere a while ago concerning trouble moving a TM archive to a different drive and the solution was to delete a couple of invisible files, but I can not find it now.
    In the spirit of Full Disclosure, more has transpired than just moving the TM archive to a different drive. The Mac was changed - though its name remained the same. Also the OS went from Leopard to Lion.
    In more detail, the previous Mac was a 1st generation PowerMac G5 2x2 running Leopard with 1 System & 3 data drives (thanks to a Jive5 bracket and SATA cards) and an external Time Machine drive. The new Mac is a top-end Mac Mini Server running Lion. The data drives have been moved to external FW800 cases (awaiting ThunderBolt). The TM drive will be on USB2.
    [As an engineer, I understand that this should have been done one step at a time so as not to throw too many parameteres up in the air at once, but when you get shiny new hardware it's sometimes tough to hold back...]
    If no solution is forthcoming, it would not be a huge tragedy to keep the old TM as a backup backup and just start anew. It just rankles me that following directions does not yield the desired result.
    Message was edited by: Notary Sojak

    I wanted to use the new one for Time Machine and iTunes.  I stupidly did not partition it.
    I know it's tempting to want to use all the vast space on a large drive your not using, the problem is when your hardware fails, it takes both backup partitions with it when it goes.
    Have multiple copies of your personal data on separate hardware, in separate locations, using easily accessible means and maintain two copies of your personal data off the machine at all times.
    Your at that stage where you need more options than TimeMachine provides, you might want to consider cloning.
    With cloning you could have just cloned the entire drive to another one no sweat, also you can access the files directly from any computer, Mac, Windows or Linux machine. Plus you can boot from cloned drives and do other things, like data recovery etc.
    Most commonly used backup methods

Maybe you are looking for