home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Varie / urlsout1 / URLOUT.TXT < prev    next >
Encoding:
Text File  |  1996-01-09  |  2.9 KB  |  64 lines

  1. URLs Out! Version 1.0
  2. Copyright Bill Reid, Dec 1995
  3. breid@ebicom.net
  4.  
  5. Function Summary:
  6.  
  7. Program converts MS Internet Explorer Internet Shortcuts into a single 
  8. HTML document, with some degree of control over the formatting.
  9.  
  10. Description:
  11.  
  12. When I began using MS Internet Explorer, I dutifully (and shortsightedly)
  13. converted my BOOKMARK.HTM structure into the little .URL files that IE uses
  14. for shortcuts to URLs and began using them exclusively.  After all, it was
  15. neat the way they showed up in your Favorites menu.
  16.  
  17. Later when I had a need to share URLs with friends or add sites to a Web page
  18. I found myself with an old bookmark file and a lot of work ahead of me in 
  19. the form of cutting and pasting shortcuts.  Thanks, MS.
  20.  
  21. And so, this program.  URLs Out! takes a directory structure (C:\Windows\Favorites
  22. by default) and steps through every subdirectory and file, searching for those
  23. little shortcut files and clipping out the vital info.  When its search 
  24. finishes, it writes out a neat little HTML bookmark file of your choice, using 
  25. the directory names as headers and listing each URL below it as a hyperlink.  In
  26. addition, if you are familiar with HTML coding you may press the "Advanced 
  27. Options" button to fill in your own HTML tags to be "wrapped around" the headers 
  28. and URLs.
  29.  
  30. Licence:
  31.  
  32. URLs Out! is offered as freeware.  This means that although I retain the
  33. copyright to this program, you are free to use and distribute it without
  34. making payment of any sort to me.  You are not licensed to resell the 
  35. product by itself or as part of a larger package.
  36.  
  37. I would appreciate your comments by email.  Email is cheap enough that it
  38. won't inconvenience you and I'd just like to know how many people actually 
  39. got some use out of this program.
  40.  
  41. Support Policy:
  42.  
  43. As I receive no payment for this program, I guarantee no support of any
  44. kind.  You may send questions via email, and I will attempt to answer 
  45. them at my leisure, but use of this program in no way guarantees technical
  46. support of any kind.
  47.  
  48. Disclaimer:
  49.  
  50. I do not guarantee (expressly or implied) that this program is suitable for
  51. your use or free from bugs.  Every effort has been made to properly test it
  52. for my own use, but this is not to be seen as a statement of quality.  You
  53. use this program at your own risk; I will not be held responsible for any
  54. losses incurred as a direct or indirect result of using this program.
  55.  
  56. Technical Notes for the Curious:
  57.  
  58. URLs Out! is programmed in Visual Basic 4.0  I use a standard directory-
  59. recursing procedure and peek at every file in the processed directory.  If the
  60. first line has the [InternetShortcut] tag that .URL files have, I strip off 
  61. the first 4 characters of the next line (URL=) and save the rest.  I wrap
  62. your basic HTML code around the various items and write it to a file via 
  63. standard I/O.  Not a lot to this program, but it fills a need.  At the time
  64. this was written, it's the only one of its kind that I know of.