Changeset 1374
- Timestamp:
- 03/03/07 20:47:27 (2 years ago)
- Files:
-
- feedmelinks/import/ready-to-import.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedmelinks/import/ready-to-import.php
r1372 r1374 25 25 $link_xslt = get_root() . "/import/import-delicious.xsl"; 26 26 $tag_xslt = get_root() . "/import/import-delicious-tags.xsl"; 27 $cmd = "$bin/import-bookmarks.pl $dir /$file_name $parser $link_xslt $tag_xslt";27 $cmd = "$bin/import-bookmarks.pl $dir$file_name $parser $link_xslt $tag_xslt"; 28 28 29 29 $result = exec( $cmd ); 30 echo "<br>cmd: <br>$cmd<br>"; 31 echo "<br>result: <br>$result<br>"; 30 32 if( preg_match( "/SUCCESS/", $result )) { 31 33 # extract whatever delimeter the perl used from the result XML: … … 76 78 77 79 } else { 78 fatal( "$result : couldn't parse result of $bin/import-bookmarks.pl $dir /$file_name" );80 fatal( "$result : couldn't parse result of $bin/import-bookmarks.pl $dir$file_name" ); 79 81 } 80 82