What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » Settings Sync/Transferer/Backup

1 votes - 5 average   Settings Sync/Transferer/Backup
Author: Message:
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Settings Sync/Transferer/Backup
Something I like to see changed from the setup:
  1. Show the log screen, don't skip on it (aka: don't automatically jump to the final "finish" page). Some people might like to know which files are installed where (like me), especially if you install 3rd party libraries in the user's system directory!

Some tips/pointers/requests:
  1. Don't use external DLL's if you can avoid them. UNZDLL.DLL and ZIPDLL.DLL (a total of 240kb!) can be avoided if you include your own zip code in your delphi project. On the net you can find sources for this. Or you can even provide you own compression scheme.
  2. Make the log window of your plugin not word-wrapped; it's hard to read.
  3. Make the log window at least resizeable.
  4. Fix spelling mistakes and be consequent in the way a line is shown:
    quote:
    Exporting Settings...
    Compressing File to C:\me@blah.com.zip...
    duplicate filename removed Orig name: C:\me@blah.com.reg ,New name : me@blah.com.reg
    duplicate filename removed Orig name: C:\me@blah.com.reg ,New name : me@blah.com.reg
    duplicate filename removed Orig name: C:\me@blah.com.reg ,New name : me@blah.com.reg
      adding: me@blah.com.reg
    Preparing FTP...
    Resolving hostname .
    Connecting to 192.168.1.103.
    Disconnecting from 192.168.1.103.
    Not connected.
    Error. Upload unsucessful
    make that something like (notice the added or removed spaces, moved comma's, added lines and other stuff):
    quote:
    Exporting Settings...

    Compressing file to "C:\me@blah.com.zip"...
    Duplicate filename removed (Orig name: "C:\me@blah.com.reg", New name: "me@blah.com.reg")
    Duplicate filename removed (Orig name: "C:\me@blah.com.reg", New name: "me@blah.com.reg")
    Duplicate filename removed (Orig name: "C:\me@blah.com.reg", New name: "me@blah.com.reg")
      Adding: "me@blah.com.reg"
      Tracing: "C:\temp0082.zip"
      Updating: "me@blah.com.reg"

    Preparing FTP...
      Resolving hostname
      Connecting to 192.168.1.103
      Disconnecting from 192.168.1.103
      Not connected

    Error: Upload unsuccessfull
    And a few remarks/questions about this logging:
    • What does the "Duplicate filename removed" exactly mean?
    • Why three times that same message?
    • Why is the new name the same as the old name?
    • Where are there spaced before "Adding me@blah.com.reg" and not before other sub-messages?
    • Why comes the message "Compressing file" before the "Duplicate" and "Adding" messages? This doesn't make sense, unless "Compressing file" actually means "Creating file" and the "Adding" actually means "Compressing".
    • What is the "trace: Temp Filename" used for?

  5. Temporary files are not removed! (the reg and zip files)
  6. Do not store the reg files as version 5.00 files, but as version 4 files! This because your tool with otherwise not work on other OS's than XP/NT...
    Version 5.0 registry files start with the header: "Windows Registry Editor Version 5.00", and are not downwards compatible!
    Version 4.0 registry files have the header: "REGEDIT4", and are upwards compatible!
  7. If you show a message box or input box, show them in front (aka on top) of the windows. Currently they appear behind all the windows.
  8. Make it possible to provide no password. Currently when the password input box appears and you leave it blank, the log outputs "Missing or empty zip file".
  9. If there was an error in creating or updating the zip, do not attempt to open the FTP connection. It doesn't make sense to upload when there is nothing to upload. The backup process should be stopped after the zip error.
  10. If previously a password was entered but not remembered and a zipfile was created using that password, the next time you backup without entering a password the zipfile is either not successfully updated but no error is given or the previously entered password is used (didn't tested which was the case). Iether way this is bad/buggy behaviour.
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-30-2005 05:01 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Settings Sync/Transferer/Backup - by XgD on 10-20-2005 at 05:42 PM
RE: Settings Sync/Transferer/Backup - by Dempsey on 10-20-2005 at 05:43 PM
RE: Settings Sync/Transferer/Backup - by hmaster on 10-20-2005 at 05:44 PM
RE: Settings Sync/Transferer/Backup - by Exca on 10-20-2005 at 05:46 PM
RE: Settings Sync/Transferer/Backup - by XgD on 10-20-2005 at 05:47 PM
RE: Settings Sync/Transferer/Backup - by hmaster on 10-20-2005 at 05:55 PM
RE: Settings Sync/Transferer/Backup - by XgD on 10-20-2005 at 05:55 PM
RE: Settings Sync/Transferer/Backup - by Ezra on 10-20-2005 at 07:29 PM
RE: RE: Settings Sync/Transferer/Backup - by XgD on 10-24-2005 at 10:57 PM
RE: Settings Sync/Transferer/Backup - by (CyBeRDuDe) on 10-20-2005 at 08:08 PM
RE: Settings Sync/Transferer/Backup - by Ezra on 10-25-2005 at 01:07 PM
RE: RE: Settings Sync/Transferer/Backup - by XgD on 10-25-2005 at 05:54 PM
RE: Settings Sync/Transferer/Backup - by Ezra on 10-29-2005 at 11:32 PM
RE: Settings Sync/Transferer/Backup - by CookieRevised on 10-30-2005 at 05:01 AM
RE: Settings Sync/Transferer/Backup - by Ezra on 10-30-2005 at 01:42 PM
RE: RE: Settings Sync/Transferer/Backup - by XgD on 10-30-2005 at 03:45 PM
RE: RE: RE: Settings Sync/Transferer/Backup - by CookieRevised on 10-30-2005 at 06:30 PM
RE: Settings Sync/Transferer/Backup - by absorbation on 10-30-2005 at 07:17 PM
RE: Settings Sync/Transferer/Backup - by riahc4 on 11-01-2005 at 02:47 PM
RE: Settings Sync/Transferer/Backup - by CookieRevised on 11-01-2005 at 03:26 PM
RE: Settings Sync/Transferer/Backup - by XgD on 11-01-2005 at 08:19 PM
RE: Settings Sync/Transferer/Backup - by Ezra on 11-05-2005 at 11:03 PM
RE: RE: Settings Sync/Transferer/Backup - by XgD on 11-06-2005 at 12:37 AM
RE: Settings Sync/Transferer/Backup - by XgD on 11-10-2005 at 09:48 PM
RE: Settings Sync/Transferer/Backup - by warmth on 09-28-2007 at 06:06 PM
RE: Settings Sync/Transferer/Backup - by Matti on 09-29-2007 at 09:23 AM
RE: RE: Settings Sync/Transferer/Backup - by warmth on 09-29-2007 at 10:51 PM
RE: Settings Sync/Transferer/Backup - by XgD on 09-29-2007 at 11:40 AM
RE: Settings Sync/Transferer/Backup - by XgD on 09-30-2007 at 12:15 PM
RE: Settings Sync/Transferer/Backup - by riahc4 on 07-08-2009 at 02:01 AM
RE: Settings Sync/Transferer/Backup - by XgD on 07-08-2009 at 05:01 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On