Copy to and from the Journal: Difference between revisions

From OLPC
Jump to navigation Jump to search
(MIME type auto-detection)
(recommend -g (guess mimetype) option but still explain the -m <mimetype> option)
Line 9: Line 9:
cd /home/olpc
cd /home/olpc
To go to the directory you saved the file in. Then type
To go to the directory you saved the file in. Then type
python copy-to-journal.py FILENAME -m MIMETYPE -t TITLE
python copy-to-journal.py FILENAME -g -t TITLE
* '''FILENAME''' is the name you saved in the filesystem,
* '''FILENAME''' is the name you saved in the filesystem,
* '''MIMETYPE''' is the [[Mimetype]] (eg txt or pdf).
* '''TITLE''' is the name you want in the journal.
* '''TITLE''' is the name you want in the journal.
* '''-g''' means *guess* the mime-type (via the <tt>file</tt> command)


If you want to specify the mime-type explicitly, just add <tt>-m</tt> '''MIMETYPE''' instead of <tt>-g</tt>
PS: A minor patch that makes it unnecessary to specify the MIMETYPE (it figures it out from the file extension) has been proposed by [[User:Vorburger]] on [http://lists.laptop.org/pipermail/devel/2008-March/012173.html devel mailing list]. Here is the [http://www.vorburger.ch/olpc/copy-to-journal.py enhanced copy-to-journal.py script], and the [http://www.vorburger.ch/olpc/copy-to-journal.py.diff diff for it]


==Copy from Journal script==
==Copy from Journal script==

Revision as of 21:17, 30 October 2008

This page is part of the XO Support FAQ.     Support Index | Print This Page
<imagemap>

Image:Support-banner-square.png|173px|community support pages rect 0 0 135 204 [1] rect 135 0 345 204 Support FAQ rect 0 205 135 408 [2]

  1. Comment : there's some whitespace here:

rect 135 205 345 408 Other support

  1. maybe desc none is better. testing.

desc none

</imagemap>

Copy to Journal Script

This Python script by Reinier Heeres and Phil Bordelon seems to do the trick.

This allows you to copy files from Linux to the Journal Activity filesystem.

To use it, save it using the name copy-to-journal.py. Save it in /home/olpc using the Opera web browser. Go to the Terminal Activity, and type

cd /home/olpc

To go to the directory you saved the file in. Then type

python copy-to-journal.py FILENAME -g -t TITLE
  • FILENAME is the name you saved in the filesystem,
  • TITLE is the name you want in the journal.
  • -g means *guess* the mime-type (via the file command)

If you want to specify the mime-type explicitly, just add -m MIMETYPE instead of -g

Copy from Journal script

This Python script allows you to copy files from the Journal to the Linux filesystem.

To use it, save it using the name copy-from-journal.py. Save it in /home/olpc using the Opera web browser. Go to the Terminal Activity, and type

cd /home/olpc

To go to the directory you saved the file in. Then type

python copy-from-journal.py -t NAME

But replace NAME with the name you saved in the Journal.

Links

You can find another version of these scripts at http://xoexperience.blogspot.com/2008/02/copy-files-to-and-from-journal.html .