SVN Tab Complete issues (space after each complete)

Morning all,
I've got a weird issue with my SVN tab complete using Bash, it adds a space after each item it completes - for example: Say there is a directory 'foobar' with a file 'zomg' within that, I'd type 'svn add fo' and then hit tab - however, this results in 'svn add foobar ' (note the space). This is highly annoying, as I can no longer hit 'z' then tab to complete it to 'foobar/zomg', I have to remove the space, then go again (it does it for everything, so adding something like 'foobar/zomg/wtf/bbq' is a nightmare.)
So far it only does it with Bash, I've not been able to test it on other shells. Subversion 1.4.6-4 on an up-to-date Arch install with core, extra and community repos enabled (however it has done it from the very start of me using Arch, so it's not a recent update that killed it).
Regards,
Last edited by AlexC_ (2008-09-20 16:13:48)

Hi AlexC_ :-)
I suspect that it may be an issue with /etc/bash_completion. This is the relevant part from my /etc/bash_completion.
# svn completion
have svn &&
_svn()
local cur prev commands options command
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
commands='add blame praise annotate ann cat checkout co cleanup commit \
ci copy cp delete del remove rm diff di export help ? h import \
info list ls lock log merge mkdir move mv rename ren \
propdel pdel pd propedit pedit pe propget pget pg \
proplist plist pl propset pset ps resolved revert \
status stat st switch sw unlock update up'
if [[ $COMP_CWORD -eq 1 ]] ; then
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--version' -- $cur ) )
else
COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
fi
else
prev=${COMP_WORDS[COMP_CWORD-1]}
case $prev in
--config-dir)
_filedir -d
return 0;
-@(F|-file|-targets))
_filedir
return 0;
--encoding)
COMPREPLY=( $( compgen -W \
'$( iconv --list | sed -e "s@//@@;" )' \
-- "$cur" ) )
return 0;
--@(editor|diff|diff3)-cmd)
COMP_WORDS=(COMP_WORDS[0] $cur)
COMP_CWORD=1
_command
return 0;
esac
command=${COMP_WORDS[1]}
if [[ "$cur" == -* ]]; then
# possible options for the command
case $command in
add)
options='--auto-props --no-auto-props \
--force --targets --no-ignore \
--non-recursive -N -q --quiet'
@(blame|annotate|ann|praise))
options='-r --revisions --username \
--password --no-auth-cache \
--non-interactive -v \
--verbose --incremental --xml'
cat)
options='-r --revision --username \
--password --no-auth-cache \
--non-interactive'
@(checkout|co))
options='-r --revision -q --quiet -N \
--non-recursive --username \
--password --no-auth-cache \
--non-interactive \
--ignore-externals'
cleanup)
options='--diff3-cmd'
@(commit|ci))
options='-m --message -F --file \
--encoding --force-log -q \
--quiet --non-recursive -N \
--targets --editor-cmd \
--username --password \
--no-auth-cache \
--non-interactive --no-unlock'
@(copy|cp))
options='-m --message -F --file \
--encoding --force-log -r \
--revision -q --quiet \
--editor-cmd -username \
--password --no-auth-cache \
--non-interactive'
@(delete|del|remove|rm))
options='--force -m --message -F \
--file --encoding --force-log \
-q --quiet --targets \
--editor-cmd -username \
--password --no-auth-cache \
--non-interactive'
@(diff|di))
options='-r --revision -x --extensions \
--diff-cmd --no-diff-deleted \
-N --non-recursive --username \
--password --no-auth-cache \
--non-interactive --force \
--old --new --notice-ancestry'
export)
options='-r --revision -q --quiet \
--username --password \
--no-auth-cache \
--non-interactive -N \
--non-recursive --force \
--native-eol --ignore-externals'
import)
options='--auto-props --no-auto-props \
-m --message -F --file \
--encoding --force-log -q \
--quiet --non-recursive \
--no-ignore --editor-cmd \
--username --password \
--no-auth-cache \
--non-interactive'
info)
options='--username --password \
--no-auth-cache \
--non-interactive -r \
--revision --xml --targets \
-R --recursive --incremental'
@(list|ls))
options='-r --revision -v --verbose -R \
--recursive --username \
--password --no-auth-cache \
--non-interactive \
--incremental --xml'
lock)
options='-m --message -F --file \
--encoding --force-log \
--targets --force --username \
--password --no-auth-cache \
--non-interactive'
log)
options='-r --revision -v --verbose \
--targets --username \
--password --no-auth-cache \
--non-interactive \
--stop-on-copy --incremental \
--xml -q --quiet --limit'
merge)
options='-r --revision -N \
--non-recursive -q --quiet \
--force --dry-run --diff3-cmd \
--username --password \
--no-auth-cache \
--non-interactive \
--ignore-ancestry'
mkdir)
options='-m --message -F --file \
--encoding --force-log -q \
--quiet --editor-cmd \
--username --password \
--no-auth-cache \
--non-interactive'
@(move|mv|rename|ren))
options='-m --message -F --file \
--encoding --force-log -r \
--revision -q --quiet \
--force --editor-cmd \
--username --password \
--no-auth-cache \
--non-interactive'
@(propdel|pdel|pd))
options='-q --quiet -R --recursive -r \
--revision --revprop \
--username --password \
--no-auth-cache \
--non-interactive'
@(propedit|pedit|pe))
options='-r --revision --revprop \
--encoding --editor-cmd \
--username --password \
--no-auth-cache \
--non-interactive --force'
@(propget|pget|pg))
options='-R --recursive -r --revision \
--revprop --strict --username \
--password --no-auth-cache \
--non-interactive'
@(proplist|plist|pl))
options='-v --verbose -R --recursive \
-r --revision --revprop -q \
--quiet --username --password \
--no-auth-cache \
--non-interactive'
@(propset|pset|ps))
options='-F --file -q --quiet \
--targets -R --recursive \
--revprop --encoding \
--username --password \
--no-auth-cache \
--non-interactive -r \
--revision --force'
resolved)
options='--targets -R --recursive -q \
--quiet'
revert)
options='--targets -R --recursive -q \
--quiet'
@(status|stat|st))
options='-u --show-updates -v \
--verbose -N --non-recursive \
-q --quiet --username \
--password --no-auth-cache \
--non-interactive --no-ignore \
--ignore-externals \
--incremental --xml'
@(switch|sw))
options='--relocate -r --revision -N \
--non-recursive -q --quiet \
--username --password \
--no-auth-cache \
--non-interactive --diff3-cmd'
unlock)
options='--targets --force --username \
--password --no-auth-cache \
--non-interactive'
@(update|up))
options='-r --revision -N \
--non-recursive -q --quiet \
--username --password \
--no-auth-cache \
--non-interactive \
--diff3-cmd --ignore-externals'
esac
options="$options --help -h --config-dir"
COMPREPLY=( $( compgen -W "$options" -- $cur ) )
else
if [[ "$command" == @(help|h|\?) ]]; then
COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
else
_filedir
fi
fi
fi
return 0
complete -F _svn $default svn
_svnadmin()
local cur prev commands options mode
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
commands='create deltify dump help ? hotcopy list-dblogs \
list-unused-dblogs load lslocks lstxns recover rmlocks \
rmtxns setlog verify'
if [[ $COMP_CWORD -eq 1 ]] ; then
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--version' -- $cur ) )
else
COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
fi
else
prev=${COMP_WORDS[COMP_CWORD-1]}
case $prev in
--config-dir)
_filedir -d
return 0;
--fs-type)
COMPREPLY=( $( compgen -W 'fsfs bdb' -- $cur ) )
return 0;
esac
command=${COMP_WORDS[1]}
if [[ "$cur" == -* ]]; then
# possible options for the command
case $command in
create)
options='--bdb-txn-nosync \
--bdb-log-keep --config-dir \
--fs-type'
deltify)
options='-r --revision -q --quiet'
dump)
options='-r --revision --incremental \
-q --quiet --deltas'
hotcopy)
options='--clean-logs'
load)
options='--ignore-uuid --force-uuid \
--parent-dir -q --quiet \
--use-pre-commit-hook \
--use-post-commit-hook'
rmtxns)
options='-q --quiet'
setlog)
options='-r --revision --bypass-hooks'
esac
options="$options --help -h"
COMPREPLY=( $( compgen -W "$options" -- $cur ) )
else
if [[ "$command" == @(help|h|\?) ]]; then
COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
else
_filedir
fi
fi
fi
return 0
complete -F _svnadmin $default svnadmin
_svnlook()
local cur prev commands options mode
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
commands='author cat changed date diff dirs-changed help ? h history \
info lock log propget pget pg proplist plist pl tree uuid \
youngest'
if [[ $COMP_CWORD -eq 1 ]] ; then
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--version' -- $cur ) )
else
COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
fi
else
command=${COMP_WORDS[1]}
if [[ "$cur" == -* ]]; then
# possible options for the command
case $command in
@(author|cat|date|dirs-changed|info|log))
options='-r --revision -t \
--transaction'
changed)
options='-r --revision -t \
--transaction --copy-info'
diff)
options='-r --revision -t \
--transaction \
--no-diff-deleted \
--no-diff-added \
--diff-copy-from'
history)
options='-r --revision --show-ids'
prop@(get|list))
options='-r --revision -t \
--transaction --revprop'
tree)
options='-r --revision -t \
--transaction --show-ids \
--full-paths'
esac
options="$options --help -h"
COMPREPLY=( $( compgen -W "$options" -- $cur ) )
else
if [[ "$command" == @(help|h|\?) ]]; then
COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
else
_filedir
fi
fi
fi
return 0
complete -F _svnlook $default svnlook
Hope this helps.
Last edited by alanhaggai (2008-09-21 02:08:12)

Similar Messages

  • Music on my iPhone has become very difficult to edit since upgrading to 5.0.1.  If I simply want to delete some songs, it insists on a complete sync cycle after EACH one I delete.  This is so annoying- (I have over 400 Christmas songs I won't need until n

    Music on my iPhone has become very difficult to edit since upgrading to 5.0.1.  If I simply want to delete some songs, it insists on a complete sync cycle after EACH one I delete.  This is so annoying… (I have over 400 Christmas songs I won't need until next year) I have also noticed it randomly keeps updating album artwork…adding more time to each sync.  Is there some way I can turn off the syncing until I have picked and deleted all the songs I want?

    The cause was probably a USB glitch during a sync or when copying. The music resides on the phone in separate files. A master file contains a database with an index to the music, an entry for each track and a "pointer" to the file containing the track. Somehow the index got corrupted with duplicate entries. It's likely that the music itself wasn't duplicated, but some tracks had more than one entry in the database. I've seen this happen when syncing (rather than manually managing) also. In my case deleting the track from the Music tab in iTunes, syncing, then adding it back fixed it.
    A related problem I've seen is an album may be split, with some tracks in each of 2 or more album entries in the listing. Fixed the same way.

  • Text input - how set an automated space after each word?

    When typing in text and using the qwerty assisted text - how can i get it to automatically add a space after each word? My Droid original did that automatically... Thanks

    lovetennis7 wrote:
    When typing in text and using the qwerty assisted text - how can i get it to automatically add a space after each word? My Droid original did that automatically... Thanks
    I have confirmed that this feature was not included with the basic software package of the Incredible 2. 

  • Lost disk space after each reinstall.

    I've had to reinstall leopard on my macbook three times in the last week for different reasons. After each reinstall(erase and install) it appeared that I lost a little more GB to the HDD. I have a 250GB HDD, and I know it actualls reads as 232.87, but without uploading any media and only using the reinstall disks that came with the box, I have only 218 or so GB. Is this normal? I can't find the numbers anywhere; they just don't add up.

    Anthony Turtzo wrote:
    I can't find the numbers anywhere; they just don't add up.
    My guess is that you have added up the sizes of the folders visible in Finder at the root level of the drive (Applications, Library, System, & Users) & compared that total to the total space used on the drive. The two numbers will not match because there are also hidden files & folders at the root level of the drive that Finder does not normally show. The hidden items are necessary for the proper operation of the Mac & in normal use are managed by the system. Since users should not tamper with them directly without good reason & it requires expert knowledge to do so without breaking anything, they have been made invisible in the Finder view.
    It is normal for the drive space used by these items to fluctuate, & for the total to grow somewhat after first installing the OS. Some of the items contain temporary files that are created & destroyed as needed. Some contain usage, crash, & other informational logs that are managed by routines that the system automatically runs periodically to keep their total from becoming too large. Others contain initialization data gathered over time that the system uses to start up or to run processes efficiently.
    Thus, there is no fixed correct number for their total size since that depends on the history & current state of the machine. On my iMac G5, one large hidden folder ("var") currently uses about 1.05 GB of drive space, but consider that only a ballpark number since it may be considerably different on different Macs at different times.
    If you are still concerned about the health of the drive, especially that something is eating up disk space unnecessarily, then run Disk Utility to check it. In the "First Aid" tab select your drive & click the "Verify Disk" button. If this reports no problems then you can be pretty sure there is nothing to worry about.

  • Spooling a file adding spaces after each line

    Hi
    I am spooling a result of an sql in a csv file in linux os. But the file generates lot of blank lines after each row. How this can be eliminated while spooling
    Thanks in advance
    Sas

    Thanks a lot for your reply. Is there any way to supress the display of query result. I dont want to see the result. I want just the output file.
    Thanks
    Sas
    Edited by: SasDutta on Mar 24, 2010 4:20 PM

  • Schedule line date changes after each MRP run

    Dear Experts,
    Clarification needed on how the system plans the MM schedule lines.
    Setting: Start in the past not allowed.
                  3 days for processing of order
    The issue is after each MRP run the system is moving the schedule line to the current date + 3 days for processing + the planned delivery time.
    If the schedule line is not firmed, after each MRP run ( which happens everyday) the system is moving the schedule line and then giving an alert saying the " order has to be rescheduled to the previous day"
    on the second day after the mrp run the system moves the schedule line again by one more day and gives the rescheduling date as " -2 days from today"
    this change is happening every day after the planning run. - because of this there are really no backorders ( schedule line in the past ) in the system. we were not able to know if the vendor is actually delayed in this case.
    can you kindly suggest what went wrong here ??
    we are using strategy 10 for the planning of procured parts. Let me know if more info is needed.
    Note: we are also using stock transfer process for some procured parts. there too the PR date gets changed after each MRP run. There there is no lead time in this case. the order is placed on the same day as the requirement as both plants are nearby. There the PR date is changing everyday to the current date.
    your advice would be of great help
    thanks
    Nagendra Kumar

    Hi Caetano,
    thanks for your suggestion
    Yes, we use firm zone for few of the vendors. there the system don't change the schedule lines.
    Also for the stock transfer PR's there is no firm zone and the lead time is one day. in this case it changes everyday after the MRP run.
    the stock transfer PR's leads to the creation of Schedule lines from the source plant. Since this PR gets changed everyday. the alerts coming out of MD07 gets changed and we really did not know if this order is delayed or not.  In the source plant we use the firm zone to avoid moving the schedule line. But then the alerts are always not correct.
    is there any setting which helps in not moving the PR everyday without using " start in the past"
    thanks
    Nagendra Kumar

  • How to remove space after paragrph in pages on ipad

    Can't figure out how to remove space after each paragraph in Pages for Ipad

    Settings > General > International > Region Format
    Set it to your country to format numbers and dates in the way your country does.

  • Space after Paragraph: How much picas equal a blank line in Garamond Regular 7.5?

    I'm using Indesign CC and  would like to add a blank line after every paragraph in my document. I found out how to do that, but the only unit I'm offered is picas. I could probably switch to inches, but that doesn't really help me. My main text is written in Garamond Regular font size 7.5 and I would like to have blank space after each paragraph equal to a blank line written in that font with that size. How do if find out much large a blank line with those font settings is? I guessed and it seems to be equal to 0p7, but it would be great if I could do that without guessing blindly. I'm glad for any help.

    I am not sure to understand.  Garamond (or any other typeface) 7.5 equals to… 7.5 pts. But the size of a typeface is measured from ascender to descender, so it does not give you an accurate idea of the real height of the line. But leading is measured from baseline to baseline and this corresponds to the measure you are looking for. Once again, you need to know the leading value and you have to enter this value for the space after.
    And 1 pica is equal to 12 pts.

  • Can I insert a space after numbered items in a list without losing auto-renumbering?

    I'm a new Pages user trying to adapt Harvard template for my needs. Can I somehow make a space after each item in a numbered list without losing auto-re-numbering? If paragraph space is used, program does not seem to recognize next number as part of the same list. Again, tried to check for previous question/answer on this but I'm not clear on how to search forum before submiting a question. Thanks Danie

    Hi Danie,
    Use a line feed (shift-return) instead of a paragraph break (return).
    Regards,
    Barry

  • Space after Number

    The code I used to display carton dimension in Packing List is:
    &<FS_VBPLK>-LAENG(C.0)&X&<FS_VBPLK>-BREIT(C.0)&X&<FS_VBPLK>-HOEHE(C.0)&
    The output text is 10 X20 X30 , there's an extra space after each number. How can I get 10X20X30 ?

    Hi
      Normally the (C) after the variable to use to compress the variable but looks like it is not working because you have multiple variables that you are printing and because of the size of the variables you might be getting the spaces.
    I am not sure if this can be done in the script itself but you can do it using subroutines in script.
    In the form you need to call a perform like below:
    /:PERFORM join_fields IN PROGRAM zreport
                /:USING &vari1&
               /:   &vari1&
                /:CHANGING &vari3&
                /:ENDPERFORM  
    In the program you need to concatenate the variables in one field and compress no-gaps and display the value.
    Regards,
    Himanshu

  • Pages for iPad - how do I create space after a paragraph?

    All I want is one line space after each numbered paragraph in a document.
    When I press return twice, the numbering restarts!
    Help.
    Thanks.

    On the iPad, documents are saved directly in the app in which they are created. Your Pages documents are saved automatically as you work  on them. If you quit working on the document right now, your progress is saved on that file. No need to save like you would on a computer.
    When you close Pages and come back to it later - all of your documents will be listed in thumbnail view on the first screen. Tap on the document that you want to work on and it will open.
    There is a help feature within the app. Tap on the wrench icon in the upper right corner and select Help from the resulting menu.

  • Space after paragragh "returns"

    Hi!
    I've made a template so that I don't have to keep telling Pages not to make space after each paragraph, but... Each time I use a style (like Heading) it automaticlly sets the space after a paragraph to 12 pt. This is annoying - can I change it?
    Thanks

    Hi Rune
    The spacing after each paragraph is associated with each individual paragraph style - not globally across all of them. If you don't want it to happen for your heading styles, either redefine the ones in the template you started from or define new ones.
    Be aware of the space before in the style that is defined to be used after your heading style.
    I hope that helps.

  • Space after paragraph "returns"

    Hi!
    I've made a template so that I don't have to keep telling Pages not to make space after each paragraph, but... Each time I use a style (like Heading) it automaticlly sets the space after a paragraph to 12 pt. This is annoying - can I change it?
    Thanks

    You are most welcome.
    I found the pdf Pages 2 User Guide accessible from the front help page to be the most useful thing. It's 250 pages but there is a great deal of white space in there. It contains most of the useful conceptual stuff you need that is absent from the individual help snippets.
    Don't ever feel guilty about posting a question though. That's what these boards are for.

  • Two spaces after a period

    Where would I modifiy my CSS to allow for the appearance of
    two literal spaces after each period in a paragraph. If you are
    typing body text, Dreamweaver appears to assume you only meant one
    space between sentences.

    > how hard you have to push mere technicians
    >The notion that people have to break a "bad"
    > habit--setting off sentences with a space or two--is a
    weird homage to
    > herd
    > mentality.
    So says you, and you say it like a true elitist.
    How can we ever show our gratitude for your taking time to
    enlighten us.
    HTML works the way it works. If you don't like it maybe you
    should consider
    a different medium to express your spectacularly superior
    taste. All your
    whining and wringing of hands is getting boring.
    Goodbye.
    Walt
    "foxetown" <[email protected]> wrote in
    message
    news:f3ij1k$a4v$[email protected]..
    > stevenkay,
    >
    > Here's my comment, from an earlier post: "...The site I
    run is
    > purposefully
    > nostalgic (living history oriented) and I spend a lot of
    my time looking
    > at
    > 18th and 19th century typesetting. I can't help thinking
    that the double
    > space
    > used then looks better than the claustrophobic version
    we've adopted now,
    > even
    > with proportional fonts..."
    >
    > The preponderance of "eye rolling" professionals who
    regard the historic
    > standard as "passe" is useful information. In my case,
    it's an
    > indication of
    > how hard you have to push mere technicians to achieve a
    standard this is
    > outside the norm. I have to deal with a lot of
    construction supervisors
    > who
    > don't know what cornice moulding is either, but they
    just admit their
    > ignorance.
    >
    > When you think about it--with respect to typography and
    "saving
    > space"--why
    > have paragraphs at all? Why put margins on a web page?
    Why set off
    > text
    > with white space? The notion that people have to break a
    "bad"
    > habit--setting off sentences with a space or two--is a
    weird homage to
    > herd
    > mentality.
    >
    >
    >

  • Irregular spaces after pasting in ID

    When I copy text from either Word or Text Editor into ID, there are irregular spaces between sentences throughout the 200 page document.
    I am a newbie to ID, but I have been trying a multitude of things to fix this...and still have the problem. Can someone please help?
    (A little background...the person who sent me these files, sent them in individual emails in which I had to copy and paste in Word. They inserted spaces, returns, etc. manually.)

    Some of us older folks who grew up with typewriters learned that you have to hit the return key (or worse...hit the carriage-return lever...GASP!) at the end of the line, and it could be that the person who keyed this in did that instead of letting Word do the automatic wrapping. How ever it got that way, Joel is right in that you need to remove them.
    Another way you may consider is using Find/Change. Enter ^p into the Find field (that's the code for a paragraph return), place the cursor at the beginning of your text and hit the Find button. When it finds the first paragraph return, decide if you want to keep it or not. If you want to remove it, hit either the Change button, then the Find button to move to the next one, or use the Change/Find button to change and find in one step.
    Without anything entered into the Change field, it will replace the paragraph return with nothing, which may or may not be what you want. If there is no space between the last character of the line and the paragraph return, you will likely get the last word of one line combined with the first word of the next line, and you really don't want to have to clean that up. Instead, consider replacing the paragraph returns with a space (by typing a space into the Change field). This may give you some double spaces to clean up later, but you can fix that fairly easily.
    At the top of the Find/Change window, you will see Query:. If you click the blue arrows to the right, you can select from a number of GREPs. One of them is Multiple Space to Single Space. If you choose it, it will load a bunch of code into the find and change fields. If you hit Change All, it will find any instance of two spaces or more in a row and change them to single spaces within the selection, story, document or what ever you have selected in the Search: field. If there is any reason you need some instances to remain two spaces or more, don't use Change All. Instead, use find, change, find next, change/find or which ever combination you're comfortable with. You may find that people who hit return at the end of each line also use two spaces after each sentence, which is also a typewriter convention that we don't use any longer in electronic typesetting. This is a good way to fix that problem too.
    Also common are two returns to separate paragraphs, which should be done with paragraph spacing, but that's another story, so one step at time.

Maybe you are looking for

  • How can I replace an existing report?

    The way our Enterprise server is setup, we have a folder that we publish all reports to. This folder is proteced from view from anyone but admins. In order for our users to "see" a report we create a shortcut of the report in their User folder. This

  • Emails not displayed on device. Receiving KEY_REQUEST without intervention.

    Hi, configuration: Blackberry Enterprise Server Exchange, several BB devices. During the middle of the night emails are recieved until a certain point on a 8100. After that, no new emails are displayed anymore. No user intervention at that (night)tim

  • Connecting IMAC to HP 6500A Multifunction

    I own three Apple computer. IMac latest model, MacBook Air latest model, MacBook late 2008. All running Mountain Lion. All three machines connect via WLAN to a Fritzbox 7390 router (also tried a Time Capsule). I have a HP Officejet 6500A connected to

  • What is error 400-1

    I keep trying to watch Disney Junior but keep getting Error 400-1 message. This program had been working but after an automatic update, stopped. I have re-activated the Disney Junior but still not working.

  • I need help in restoring data recovered from hard drive crash to new hard drive

    I have the data that was recovered by a recovery service (long story) from my wife's hard drive after it crashed, which is now stored on my computer. There are two user data sets that have been recovered, one for each of us. I need to put each on my