pendolino 6 Posted February 10, 2009 Share Posted February 10, 2009 has anyone figured out how to easily move from Journler to Evernote? I'm trying to find a way to move my many Journler entries to Evernote.Journler currently exports to XHTML or webarchive but Evernote does not support any of these as import types. Link to comment
engberg 89 Posted February 10, 2009 Share Posted February 10, 2009 You should be able to drag the .html file onto Evernote to import it. The Web Archive format would require that you open it in Safari first, select-all, and Copy to Evernote. Link to comment
tennr 0 Posted February 10, 2009 Share Posted February 10, 2009 I've been looking for similar solution and noticed that one forum member was working on a PERL script for this purpose:http://forum.evernote.com/phpbb/viewtopic.php?f=38&t=8797&p=33890&hilit=journler#p33890Since Evernote now has a well defined XML document format, translators are practical, and this one looked promising.Tom Link to comment
dalefrancum 0 Posted February 14, 2009 Share Posted February 14, 2009 Hey guys,I did get the script to work for my notes, and at least one other Evernote user has used it successfully. It works, it just requires a little shell knowledge...and currently it uses the GNU date command (installed with fink) as opposed to the version that came with OS X. If I ever get more time to play with it I'll try to make it a little friendlier. For the time being, anyone who wants to give it a try can just contact me via the forum.Dale Link to comment
ajmanik 0 Posted March 31, 2009 Share Posted March 31, 2009 Hi folks:I tried out Dale's script (Thank you, Dale!), but it seemed to lose the HTML formatting of my existing notes. Since all my notes are bulleted and indented, I have to have the formatting preserved. (There's a chance I just used his script wrong...)Here's how I moved my Journler notes over. This approach will map Journler folders to Evernote notebooks, will preserve create & modification dates of your Journler entries, and preserves HTML formatting. The Journler category is NOT parsed out or mapped, nor are tags supported.1. Export all Journler records, by Journler category and/or target Evernote notebook. For example, if you have a Journler folder called "Personal", select all entries and then choose: File / Export Selected Entries. You need to export the entries as "Rich Text", Include header, Set file creation date, Set file modification date, and "Save each entry ... in its own file all in a single folder." NB: The folder you save to will become the name of the Evernote notebook.2. Launch Evernote, go into Preferences, and in the Clipping tab, temporarily disable: "Bring note to front", "Bounce dock icon" and "Play a sound". In the General tab, click on "Grown preferences" and temporarily disable Growl for Evernote. You can turn these settings back on after the import, but trust me -- if you import > 10 Journler entries, you will want these off.3. Load the applescript below into Script Editor.app, and run it.4. Pick the folder you exported your Journler entries to. Remember: the name of this folder becomes the name of the notebook in Evernote.5. Run the script.6. Rinse & repeat for your remaining Journler categories / notebooks.7. Done!You may want to consider using the export process from Journler as a way to remap your categories. If you export multiple Journler categories into the same output Folder, they will end up in the same Evernote notebook after import.Code for the applescript below. There is no error checking, and standard disclaimers around ruining your existing Evernote records and formatting your hard drive apply.set listOfNames to {}set theFolder to choose folder "Select the source folder"tell application "Finder" set filelist to every file of the folder theFolder repeat with currentFile in filelist set currentFileName to (the name of currentFile) set nom to currentFileName if text -4 of nom is "." then set currentFileName to (text 1 thru -5 of nom) end if set currentFileDate to (the creation date of currentFile) set currentFileLocation to currentFile as alias set currentFileFolder to (the name of theFolder) tell application "Evernote" create note title currentFileName created currentFileDate notebook currentFileFolder from file currentFileLocation end tell end repeatend tell Link to comment
pendolino 6 Posted April 23, 2009 Author Share Posted April 23, 2009 thanks! i found this on your blog first. good to see you've added it here. Link to comment
tomizza 2 Posted September 9, 2011 Share Posted September 9, 2011 just wanted to point to michael carusos applescript to convert journler entries to evernote notes: »Journler to Evernote Export« http://michaelcaruso.net/journler-to-evernote/it does preserve creation/modification date, tags, categories and folders (which both become tags) etcdid work great for my 2000+ journler entries, although some things did not work:[*:1kl6otkg]wikilinks between journler entries — they obviously did not get updated but remained journler links journler://entry/xyz[*:1kl6otkg]aliases/links to directories: "encountered an error: 20. attachment parameter is a directory"[*:1kl6otkg]"encountered an error: -1700. evernote got an error: can't make missing value into type file"[*:1kl6otkg]malformed (well, at least for evernote) links: "encountered an error: -10000. evernote got an error: appleevent handler failed" — journler entries with such links did not get imported et all[*:1kl6otkg]eg http://www.falter.at/web/wwei/detail.ph ... 26teil%3D1)#[*:1kl6otkg]eg http://www.amazon.de/s/ref=nb_ss_ce/028 ... .y=0&Go=Go[*:1kl6otkg]eg http://www.duden-suche.de/suche/treffer ... E4rendreckcudos to caruso Link to comment
Idea
pendolino 6
has anyone figured out how to easily move from Journler to Evernote? I'm trying to find a way to move my many Journler entries to Evernote.
Journler currently exports to XHTML or webarchive but Evernote does not support any of these as import types.
Link to comment
7 replies to this idea
Recommended Posts
Archived
This topic is now archived and is closed to further replies.