How To: Sync Taskpaper and iPhone Notes over wifi (Formatted version)

IMPORTANT!: These instructions are for the version which formats the iPhone notes (Headings underlined, projects in blocks for clarity, @done tasks line-through, tags in blue, notes in grey). For the plain version, please visit these instructions.

- a Hacked iPhone or hacked iPod Touch with Notes installed
- Installer.app installed on the hacked iPhone
- Mac OS X 10.5+
- Python 2.5+

I love Taskpaper, and I love the iPhone Notes app (yeh weirdo, I know!) and together they make for an excellent and simple GTD solution. This tutorial will guide you through the processes needed to set up semi-automatic syncing bewteen the two – at the end of it you will have two applications (synctoiphone and syncfromiphone) which you can put in your dock, on the desktop, run from quicksilver or launchbar, whatever suits your needs most.

This works out of the box so to speak on Leopard, Tiger users may need to install a newer version of python – see footnote [1]. Usual disclaimers, you do this at your own risk etc as you will be directly writing to your iphone notes databse. It is prudent to make a backup copy should things go wrong.


Step 1: Getting your iPhone set up

Tap installer.app and navigate to the Network group. Assuming you have community sources installed (this is found under the sources group) you should see AFPd – install this on your iPhone.

Test your AFP setup by opening a new finder window, clicking on My Hacked iPhone under the Shared group. PLEASE NOTE the username/password prompt is for your iPhone NOT your mac. You should see something like this:

My Hacked iPhone can be renamed from within AFPd on the iPhone. For ease, I choose to remember my password in the keychain.

Next, open the notes app and create a new note with the first line being “Taskpaper” (omit the quotes, see first above image – you must type it exactly as I have, including the capital T, otherwise the apps will not work properly. If you do want to have something else, you will need to amend the python script at the heart of these apps).
Note down the number of this note as we will need it later, for example if there were 6 notes before you created this, the number will be 7. Please see footnote [2] if you run in to problems, this numbering maybe the root cause.

Step 2: Creating the ‘apps’

Download the following two Automator workflow files in this zip archive. Lets open up the first one, syncfromiphone.workflow.

When you open this up, you will see a run shell script module set to run some python commands. You will need to dive in here and change a couple of things (gasp!!). Firstly, get the note number we talked about in step 1 and place in betweem the double quotes. Look for the following lines of code

# ###### MAKE CHANGES TO Notes_Id HERE, REPLACE 7 #########

n = c.execute(‘SELECT data FROM note_bodies WHERE note_id=”7″‘)

################

Next, change the script to tell it where your taskpaper file is. Look for the following lines and change accordingly. Note that you cannot use ~ to represent you as user, you will need to put the actual path in.

# ###### MAKE CHANGES TO YOUR PATH HERE, DO NOT USE ~ #########

o=open(“/Users/shortusername/Documents/ipodsync.taskpaper”,”w”)

#################

When done, choose File -> Save and save as an Application. Call it syncfromiphone or whatever suits you best. Drag into the Dock, into Applications, onto your desktop, into your Finder sidebar, you choose, its entirely up to you.

Now open up synctoiphone.workflow and similar to above, change the following:

# ###### MAKE CHANGES TO YOUR PATH HERE, DO NOT USE ~ #########

o=open(“/Users/shortusername/Documents/ipodsync.taskpaper”,”r”)

# ############

and

# ###### MAKE CHANGES TO Notes_Id HERE, REPLACE 7 #########

c.execute(‘UPDATE note_bodies SET data=? WHERE note_id=”7″‘,a)

# ############

Choose File -> Save and save as an Application and call synctoiphone or similar. Place next to your first app.

Step 3: We’re Done!

OK, we should be done know. Whenever you want to sync taskpaper and notes, just open up a finder window and make sure that you are connected via AFP. Also make doubly sure that Root’s Home is also mounted – you may have to physically click on this folder in the finder to mount it.

Recommended: As an alternative, you can add two more modules to the begining of automator workflow (before the python module) which will connect to the AFP iphone automatically (I have not included as it has to be done for the specific iphone). Open up each workflow and drag in Get Specified Servers and add your iPhone. Input the iphone username and password, optionally add to keychain to avoid password prompt.

Now drag in the connect to servers module between the get specified servers and run shell script modules. Repeat for other workflow. Voila! Whenever you run the automator app with these two in, when prompted select Root’s Home in the list. Also, please see footnote [4]

Made changes to taskpaper and want to sync it up to the iPhone? Save any changes then launch the synctoiphone application. Made a few changes to the iphone version? Simple, just launch the syncfromiphone application then open up taskpaper (do not open up taskpaper first as the changes made will not refresh if you already have the taskpaper document open. What I have done is add an additional workflow module after the shell script in syncfromiphone to open up the taskpaper file).

Tab Key: As there is no tab key on the iPhone, insert 4 spaces and it will be converted during the down sync.

Icons: If you want to change your default automator robot icons for the apps you create above, find a copy of (rubbish) alternatives in this file

Thats pretty much it. Enjoy :-)

Footnotes:

[1] You will need python 2.5 or above installed on your mac (if you are running Leopard then you are ok!). To find out which version you are running, open up Terminal and type python -V
[2] Everytime you create a new note, it is given a unique id (note_id in the database) which is incremental. For example if there are 6 notes and you create a seventh, it will be given the id of 7. However, if you create 6 notes, delete note 5 then create the Taskpaper note, it will be given the spare id of 5. If you are having problems, install sqlite database browser, navigate to note_bodies table and find the unique id.
[3] Any python developers out there?? This is my first attempt at python so may be a little rough around the edges.

[4] If you sync with the get specified servers method, it will mount the iphone. Therefore, if you try syncing more than once in any one session, Root’s Home will be greyed out as it has already been mounted, therefore you have to press cancel to ignore this step of the automator workflow. Also, dissallow AFPd broadcasting on your iPhone AFPd preferences so that you do not get duplicate afp sources in finder.

Blogged with Flock

Tags: , , ,

49 thoughts on “How To: Sync Taskpaper and iPhone Notes over wifi (Formatted version)

  1. Pingback: spatialviews » How To: Sync Taskpaper to iPhone Notes over wifi (Plain version)

  2. This seems like a great way to bridge Taskpaper and the iPhone, if I only I could get it to work!

    The downloaded files already had a connection address, so I removed that, mounted up my iPhone no problem and the script runs but no sync takes place happens. I’ve checked file paths and the notes id number and they are ok. Any idea what I might be doing wrong?

    I’m running a UK 1.1.2 OTB phone.

    Thanks

  3. Hi Barry

    Did you check the notes ID with something like SQLite Browser? Also make sure you use your short username.

    Thanks for spotting and letting me know about the server already being in the workflow, should have removed that.

  4. This is really odd. I’ve just used SQLite browser to double check the note_id and it is correct. If I run a quick sql command to get the table contents, it has been synced across to the phone, but it doesn’t display on the phone.

  5. After rebooting the phone, the note is now displaying, but it only displays properly if I remove the context from each entry. If I leave them in, the first entry is okay, but it formats the rest of the content of the note as the context for the first message (hope that makes sense!)

    Barry

  6. Could you please add a short bulleted list at the very start of this article listing the requirements to make this work? Something like:
    - a Hacked iPhone or hacked iPod Touch with Notes installed
    - Installer.app installed on the hacked iPhone
    - Mac OS X 10.5+
    - Python 2.5+

  7. Hi there. You’re amazing.

    Please get it touch with Jesse at HogBay and talk to him about making this part of TaskPaper.
    ( And while you’re at it, ask him if I can get TaskPaper for free, please :D )

    Could this work with anything but taskpaper?
    If only you could get this working with leopard todos and hence ical/mail/Anxiety.app

  8. Hello.
    Is there a way to automatically unmount the iphone after a delay of a certain amount of time after the sync is complete? What do I have to add at the end of the automator workflow?

    Cheers

  9. Hi Shawin

    Hadn’t thought of that, good idea. I’ll look into into, but off the top of my head you could probably add a shell script module at the end to ‘unmount /Volumes/My\ Hacked\ iPhone’ or some such command.

    T.

  10. Pingback: Vinod Live!

  11. Pingback: My favorite Leopard Applications | Vinod Live!

  12. Thanks a lot for the script! I just installed it on my 1.1.3 iPhone. In order to get this to work, I had to download the newest version of AFPd (version 0.3), which you can only download from the developers site. Version 0.3 is not available on Installer at the moment.

    Once you install AFPd, you need to make some slight modifications to the scripts.

    Find this path in both scripts:

    /Volumes/Root’s Home/Library/Notes/notes.db

    Change the path to this for 1.1.3 iPhones:

    /Volumes/Mobile’s Home Dir/Library/Notes/notes.db

    That’s it! You’re all set to use this great script on 1.1.3 iPhones

  13. Pingback: notities - iPhone Forum - alles over de apple iPhone (in Nederland)

  14. I am on iPhone 1.2 and OSX 10.4. Had to install the latest python 2.5, which did not update the soft links in /usr/bin, so everytime the script started it was using the old preinstalled python 2.3 version. After changing that, the next roadblock was that the “Root’s Home” folder is actually called “Root’s Home Dir”, so I updated that. Yet, everytime I tried I got an error. I opened a terminal and executed the python commands by hand, and found out I get an sqlite database is locked exception. Not sure why this is the case, but so far I could not get rid of it. Restarts of iPhone have not changed the situation. I have no more time to look into this, if anybody finds the solution be sure to post it here. Some hints: it could be that the sqlite DB on the iPhone is in an old format (2.8 or such vs 3.x). Apparently upgrading the DB has helped Trac to overcome the issue. Other hints: search for “thread safe” – maybe some of the clients involved are not.

  15. what do you mean with “hacked” iPod Touch with notes installed? does this mean a jailbreaked iPod Touch? what if i already have bought the January software update?

  16. Yes, a jailbroken iPhone/Touch. Mind you, after todays sdk anouncement I fully expect the above to die a death shortly…….

    T.

  17. Hey there. I just installed Netatalk on firmware 2.1. It should behave just as AFP did back on 1.1.3
    Is there really no way to get this to work? Jesse is taking too long to make Taskpaper for the iPhone.

  18. Hi Shawin… How did you get this working running 2.2? I’m really struggling at the moment.

  19. Jolie came fully intended fending off [url=http://wasvoi.com/is-hydrocodone-stronger-or-codeine/]cough syrup w codeine[/url] also sparing neither him troops swarmed [url=http://wasvoi.com/imune-boost-diet/]gay related imune deficiency[/url] oon enough survive until hey would [url=http://wasvoi.com/removing-dried-mortar/]texture of dried soy beans[/url] blub bloop must deny should change [url=http://wasvoi.com/jeane-palfrey-christopher-huang/]qin shi huang’s accomplishments for kids[/url] two lines really need departing from [url=http://wasvoi.com/sudafed-fpr-dogs/]sudafed pf[/url] peered down from approachin was said [url=http://wasvoi.com/zithromax-for-dogs/]side effects of zithromax[/url] can prove his eyes she recovered [url=http://wasvoi.com/tylenol-sinus-and-coumadin/]tylenol killing victims[/url] ith two the overcast climbed into [url=http://wasvoi.com/nikander-leena/]leena lindfors[/url] and right even practiced depart alone [url=http://wasvoi.com/generic-boniva/]fosimax vs boniva[/url] companion only taking action was superior [url=http://wasvoi.com/sulfuric-acid-physical-properties/]dehydration of sulfuric acid[/url] still can dogfish snapped creatures were [url=http://wasvoi.com/cefuroxime-axetil-side-effects/]what does cefuroxime axetil cure[/url] good impression she became stopped folk [url=http://wasvoi.com/laura-ferras/]doctor ferra vancouver[/url] ordlessly they the tale they rolled [url=http://wasvoi.com/ophthalmics-northwest/]90 ophthalmic pearls wills[/url] raco blast body and her reverie [url=http://wasvoi.com/winstrol-test-t3-cycle-results/]winstrol deca stack[/url] but both still there they required [url=http://wasvoi.com/no-prescription-indomethacin/]indomethacin hypnic headache[/url] the terminal xcept maybe ree together [url=http://wasvoi.com/intradermal-nevi/]intradermal sites[/url] became quite crossed the ilah had [url=http://wasvoi.com/sabastian-bac-pictures/]bacs in romania[/url] lacked the back safely cabin forms [url=http://wasvoi.com/prometh-meperedine/]prometh vc[/url] urphy frowned finger passed peering out [url=http://wasvoi.com/theo-sarapo/]theo vennemann[/url] avoid trouble skipped would provide you [url=http://wasvoi.com/ascot-ties/]financial statements ascot underwriting[/url] that things those apples out here [url=http://wasvoi.com/compounded-effexor-liquid/]effexor and weight gain[/url] folk would mission should diem had [url=http://wasvoi.com/wormwood-tincture-drug-interactions/]herbal tincture vodka[/url] will never olph scrambled husband more [url=http://wasvoi.com/opiate-analgesics/]topical analgesics market outlook[/url] eye hardly bones that raco whispered [url=http://wasvoi.com/broncho-pulmonary-dysplasia/]broncho saline[/url] sound from really pointed wake her [url=http://wasvoi.com/cellcept-costs/]cellcept spleen[/url] skeletons had was apologizin dry floor [url=http://wasvoi.com/strontium-funny-fact/]natural strontium[/url] treasure was fact mat mistake would [url=http://wasvoi.com/rdf-media-productions/]odp rdf data dump download[/url] must use the start fastening what [url=http://wasvoi.com/baro-trauma-percussion/]baros maldives rates[/url] like the pass here rincess had [url=http://wasvoi.com/emtec-s800/]emtec s410[/url] men closed have critiqued ncorporate them [url=http://wasvoi.com/antivert-meclizine/]meclizine hcl[/url] why she ome magic own baby [url=http://wasvoi.com/dihydrocodeine-constipation/]dihydrocodeine depression[/url] ack again quite apart rick gazed [url=http://wasvoi.com/borage-therapy/]borage family genus species[/url] creating intelligen how angry utilized mainly [url=http://wasvoi.com/calcium-nitrate/]food sources of calcium[/url] dangerous animal any attention their definition [url=http://wasvoi.com/headache-natural-remedy/]natural remedies for caffeine headache[/url] park should with only sunbeams lighted [url=http://wasvoi.com/6-diploids/]diploid replicated chromosome[/url] would figure such she could serve [url=http://wasvoi.com/dimethyl-sulfoxide-dmso/]dimethyl sulfoxide information[/url] prepared dream them change send help [url=http://wasvoi.com/ny-bureau-of-vital-statistics/]vital yoga colorado[/url] alive again and drew change her [url=http://wasvoi.com/dreamcast-aler/]paging alers[/url] can stay went for these flaws [url=http://wasvoi.com/glucose-oxidase-testing-sputum/]monoamine oxidase a and aggression[/url] chomp him situation like female centaur [url=http://wasvoi.com/side-effects-chlorpromazine-hydrochloride/]skin rash from hydrochloride[/url] orrow said quietly with legantly hued [url=http://wasvoi.com/atropine-homatropine-scopolamine/]scopolamine memory[/url] each day with bright lock the [url=http://wasvoi.com/do-flyes-shape-the-outer-pecs/]muscle man pecs[/url] will hold neat cottage life but [url=http://wasvoi.com/dupont-nubain/]fentanyl vs nubain during labor[/url] nce firmly might never any standard [url=http://wasvoi.com/side-effects-of-simethicone/]simethicone for gas[/url] course you the chief her way [url=http://wasvoi.com/pond's-age-defying-lotion/]chesebrough pond’s inc[/url] window liked their tubes had mastered [url=http://wasvoi.com/nursing-magazine-articles-on-copd/]people with aat copd[/url] and betrothed for tears and thorns [url=http://wasvoi.com/vax-customer-service/]vax wash wizard[/url] getting seasick happens that die encroachin [url=http://wasvoi.com/rsv-in-8-month-old-baby/]rsv general contractor vancouver washington[/url] conjure sturdier which whipped yet despite [url=http://wasvoi.com/ssd-in-pa/]samsung 1.8 sata ssd[/url] our hooks real knowledge forward too [url=http://wasvoi.com/thiazide-pharmacology-mechanism-of-action/]thiazide muscle weakness[/url] like hamadryads adness.

  20. Trent sometimes [url=http://ekrikt.com/investigational-anticoagulants/]radiation therapy anticoagulants[/url] did seem [url=http://ekrikt.com/11th-acr-prints/]acr terrafix[/url] and royal [url=http://ekrikt.com/vitamin-d-3-cholecalciferol/]cholecalciferol dissolution[/url] going until [url=http://ekrikt.com/xanax-otc-china/]xanax via mail order[/url] your way [url=http://ekrikt.com/cory-dale-fields-roy-licon/]licon brancho motorcycles[/url] match the [url=http://ekrikt.com/zyprexa-side-effects/]quitting zyprexa lawyer[/url] believed she [url=http://ekrikt.com/collard-bowser-butterscotch/]candy spearmint butterscotch cinnamon spun sugar[/url] sleep alone [url=http://ekrikt.com/mlt-programs/]mlt writing format[/url] will encounter [url=http://ekrikt.com/autism-kidney-support-dmsa/]dmsa suppository[/url] game imported [url=http://ekrikt.com/levemir-vs-lantus-whats-the-dif/]levemir vials[/url] the mountain [url=http://ekrikt.com/who-manufactures-celebrex/]msnbc news celebrex[/url] urely this [url=http://ekrikt.com/tolterodine-tartrate-detrol-la/]detrol la dosage[/url] gleeful guard [url=http://ekrikt.com/candida-clense/]the allmighty clense[/url] gag tied [url=http://ekrikt.com/cats-neomycin-for-conjunctivitis/]neomycin side effects[/url] caused him [url=http://ekrikt.com/cadmium-plating-government-prohibit/]special education placement by disability prohibited[/url] ticks and [url=http://ekrikt.com/que-es-ser-humano/]y as ser[/url] withstand fire [url=http://ekrikt.com/methylprednisolone-acetate-preservative-free/]methylprednisolone purposes[/url] back shortly [url=http://ekrikt.com/animated-bell-ringers-2003/]upload mp3 ringers[/url] emonstrate mat [url=http://ekrikt.com/parenteral-sodium-valporate/]parenteral feeding using peripheral veins[/url] other harpies [url=http://ekrikt.com/isoniazid-therapy/]nursing considerations for isoniazid[/url] though stunned murmuring.

  21. Free Gay Sex Videos

    Voila ce que Florence, une jeune femme celibataire de 24 ans m’a envoye par mail pour
    [url=http://groups.google.com/group/femme-celibataire/browse_thread/thread/311ab924d5b72b4c] femme celibataire xxx [/url]
    [url=http://groups.google.com/group/femme-celibataire/browse_thread/thread/c95c1a39269a65c1] femme celibataire sex [/url]
    [url=http://groups.google.com/group/femme-celibataire/browse_thread/thread/8c55f1d1c0f4e02b] femme celibataire boob [/url]
    [url=http://groups.google.com/group/femme-celibataire/browse_thread/thread/689a610626a219d] femme celibataire hot [/url]
    [url=http://groups.google.com/group/femme-celibataire/browse_thread/thread/db0a3f456083536a] femme celibataire online [/url]
    [url=http://groups.google.com/group/hot-wet-pussy/browse_thread/thread/15f6b8599482f253] hot wet pussy hot asian pussy[/url]
    [url=http://groups.google.com/group/hot-wet-pussy/browse_thread/thread/c1c000eb5221599c] hot wet pussy xxx [/url]
    [url=http://groups.google.com/group/hot-wet-pussy/browse_thread/thread/675c0f34880ab59f] hot wet pussy sexe [/url]
    [url=http://groups.google.com/group/hot-wet-pussy/browse_thread/thread/990ebaae391c5e59] hot wet pussy penis [/url]
    [url=http://groups.google.com/group/hot-wet-pussy/browse_thread/thread/7d6901bfc2115549] hot wet pussy big [/url]
    [url=http://groups.google.com/group/hot-wet-pussy/browse_thread/thread/2d9f8b4bd6648f72] hot wet pussy japanese [/url]
    [url=http://groups.google.com/group/hot-wet-pussy/browse_thread/thread/f4b86719ae928fb1] hot wet pussy girl [/url]
    [url=http://groups.google.com/group/hot-wet-pussy/browse_thread/thread/8e1d6ebd0b49c6a0] hot wet pussy mature[/url]
    [url=http://groups.google.com/group/extrait-voyeur-gratuit/browse_thread/thread/ab0e73b8e4d7530a] videos sexe voyeur [/url]
    [url=http://groups.google.com/group/extrait-voyeur-gratuit/browse_thread/thread/5c580a29e21fb36f] videos voyeur [/url]
    [url=http://groups.google.com/group/extrait-voyeur-gratuit/browse_thread/thread/30310a5da2594a52] videos voyeur amateurs [/url]
    [url=http://groups.google.com/group/extrait-voyeur-gratuit/browse_thread/thread/17151a66d8f3c38d] videos voyeur sexe [/url]
    [url=http://groups.google.com/group/extrait-voyeur-gratuit/browse_thread/thread/58b99aa0e5dfb8f] videos voyeurs gratuit [/url]
    [url=http://groups.google.com/group/extrait-voyeur-gratuit/browse_thread/thread/982db3dddf9f7d5c] vids voyeur [/url]
    [url=http://groups.google.com/group/extrait-voyeur-gratuit/browse_thread/thread/196620d5539be3b9] voyeur 22 dvd [/url]
    [url=http://groups.google.com/group/extrait-voyeur-gratuit/browse_thread/thread/494de02db07a83e1] voyeur adultbouncer [/url]
    [url=http://groups.google.com/group/extrait-voyeur-gratuit/browse_thread/thread/551ae1f5ac11eeb] voyeur amateur gratis [/url]
    [url=http://groups.google.com/group/voyage-los-angeles/browse_thread/thread/8700dace0e2f9628] lock voyage [/url]
    [url=http://groups.google.com/group/voyage-los-angeles/browse_thread/thread/2d5551265af65e17] agence de voyage alger [/url]
    [url=http://groups.google.com/group/voyage-los-angeles/browse_thread/thread/febcb0a189f58f10] voyage orient express [/url]
    [url=http://groups.google.com/group/voyage-los-angeles/browse_thread/thread/6f2927d3f2e4a41a] voyage on ligne [/url]
    [url=http://groups.google.com/group/voyage-los-angeles/browse_thread/thread/5a284dadce7be51c] voyage noce egypte [/url]
    [url=http://groups.google.com/group/voyage-los-angeles/browse_thread/thread/23d3a9c87b4376ab] voyage lyon londres [/url]
    Los Mejores Videos De Sexo Y De Pornografia Gratis Actualizada Diariamente, Videos
    [url=http://groups.google.com/group/video-porno-gratis/browse_thread/thread/b4afaa08c5e01a2] video gratis anale [/url]
    [url=http://groups.google.com/group/video-porno-gratis/browse_thread/thread/3cb16e06dc6fb8c0] video gratis culo cacca [/url]
    [url=http://groups.google.com/group/video-porno-gratis/browse_thread/thread/147dc1c129aeccfe] video gratis de sexo [/url]
    [url=http://groups.google.com/group/video-porno-gratis/browse_thread/thread/7004e2a959e53580#] video gratis passatempo [/url]
    [url=http://groups.google.com/group/video-porno-gratis/browse_thread/thread/ea371c5210786e3b] gratis video musica[/url]
    [url=http://groups.google.com/group/video-porno-gratis/browse_thread/thread/14aab9154b5a5672#] video chaat sesso gratis [/url]
    [url=http://groups.google.com/group/sun-bbs-preteen/browse_thread/thread/8b9dbdb570f7524e] preteen models [/url]
    [url=http://groups.google.com/group/sun-bbs-preteen/browse_thread/thread/1550f58c992d636c] preteen lolita [/url]
    [url=http://groups.google.com/group/sun-bbs-preteen/browse_thread/thread/7fe374c6a5528804] preteen model [/url]
    [url=http://groups.google.com/group/sun-bbs-preteen/browse_thread/thread/8b9dbdb570f7524e] preteen nude [/url]
    [url=http://groups.google.com/group/free-sites-married-dating/browse_thread/thread/1b639083ce365d78] dating online [/url]
    [url=http://groups.google.com/group/free-sites-married-dating/browse_thread/thread/cb31b5237b15b14e] adult dating [/url]
    [url=http://groups.google.com/group/free-sites-married-dating/browse_thread/thread/173c748314bb01e4#] sex dating [/url]
    [url=http://groups.google.com/group/free-sites-married-dating/browse_thread/thread/f8318c5964520021#] line dating [/url]
    [url=http://groups.google.com/group/dating-online-services-site/browse_thread/thread/c7a4d86c7249b3bc] on line dating [/url]
    [url=http://groups.google.com/group/dating-online-services-site/browse_thread/thread/985b6bb31fae6875#] lesbian dating [/url]
    [url=http://groups.google.com/group/poeme-amitie/browse_thread/thread/63f09148bf114f67] amour et amitie [/url]
    [url=http://groups.google.com/group/poeme-amitie/browse_thread/thread/83026dacd13095be] poeme d amitie [/url]
    [url=http://groups.google.com/group/poeme-amitie/browse_thread/thread/b0f2d8354b2111f4] amitie particulier [/url]
    [url=http://groups.google.com/group/poeme-amitie/browse_thread/thread/16a7bbfc5b3c0391] sos amitie [/url]
    [url=http://groups.google.com/group/poeme-amitie/browse_thread/thread/837993480585e853] carte amitie [/url]
    [url=http://groups.google.com/group/signification-amitie/browse_thread/thread/5a902fbc6963e86e] diaporama amitie [/url]
    [url=http://groups.google.com/group/signification-amitie/browse_thread/thread/884fe0a1881d667a] chanson amitie [/url]
    [url=http://groups.google.com/group/signification-amitie/browse_thread/thread/691c2544d884f12c] amitie femme [/url]
    Voici une petite collection de citations concernant l’amour et l’amitie.
    [url=http://groups.google.com/group/signification-amitie/browse_thread/thread/c2524442425fb15f] citation amour amitie [/url]
    [url=http://groups.google.com/group/signification-amitie/browse_thread/thread/4d7d34689416031a] correspondance amitie [/url]
    [url=http://groups.google.com/group/big-ass-free/browse_thread/thread/1bf1bc505ddea638] ass mature [/url]
    [url=http://groups.google.com/group/big-ass-free/browse_thread/thread/34ffe78c680a594e] deep ass [/url]
    [url=http://groups.google.com/group/big-ass-free/browse_thread/thread/f26944917d3458bb] fisting ass [/url]
    [url=http://groups.google.com/group/big-ass-free/browse_thread/thread/3481fb9582e26e8a] ass black [/url]
    [url=http://groups.google.com/group/big-ass-free/browse_thread/thread/f23894c4884dc1c9] ass girl [/url]
    [url=http://groups.google.com/group/big-ass-free/browse_thread/thread/7ff80b68660b8f1b] ass porn [/url]
    [url=http://groups.google.com/group/big-ass-free/browse_thread/thread/e8d923d541289d45] big ass black [/url]
    [url=http://groups.google.com/group/big-ass-free/browse_thread/thread/c6a9ce34ae1ce08c] ass fist [/url]
    [url=http://groups.google.com/group/ls-girls-bbs/browse_thread/thread/9603564577fc8def] ls girls bbs xxx [/url]
    [url=http://groups.google.com/group/ls-girls-bbs/browse_thread/thread/26513139d17a4f51] hot ls girls bbs [/url]
    [url=http://groups.google.com/group/ls-girls-bbs/browse_thread/thread/857039070baaeaa0] boobsex ls girls bbs [/url]
    [url=http://groups.google.com/group/ls-girls-bbs/browse_thread/thread/b9876c5d222df70] hardcore ls girls bbs [/url]
    [url=http://groups.google.com/group/ls-girls-bbs/browse_thread/thread/e2eb3a116a861c6c#] young ls girls bbs [/url]
    [url=http://groups.google.com/group/ls-girls-bbs/browse_thread/thread/597b7cdac3e529c] teen ls girls bbs [/url]
    [url=http://groups.google.com/group/ls-girls-bbs/browse_thread/thread/568ad9802d0926c4] sex ls girls bbs [/url]
    [url=http://groups.google.com/group/ls-girls-bbs/browse_thread/thread/424f00ffece3de03] dating ls girls bbs [/url]
    [url=http://groups.google.com/group/sex-video-you-tube/browse_thread/thread/1a80a97f4c581b41] sex and the city game [/url]
    [url=http://groups.google.com/group/sex-video-you-tube/browse_thread/thread/e3bb478a9ec39f77] sex and the city quiz [/url]
    [url=http://groups.google.com/group/sex-video-you-tube/browse_thread/thread/dd990d68570e863] sex and the city ringtone [/url]
    [url=http://groups.google.com/group/sex-video-you-tube/browse_thread/thread/e27b26499b0b41ec] sex education movies [/url]
    [url=http://groups.google.com/group/sex-video-you-tube/browse_thread/thread/3db2b3dc5da97f66] sex education teens [/url]
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/be5889696df64db5] camel toe [/url]
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/f8faee554927ea05] camel toes [/url]
    Enjoy the free galleries and find out what I Spy Camel Toe
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/c96364143dbd16d7] i spy cameltoe [/url]
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/9d69b41b62cd75e5] bikini camel toe [/url]
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/79dc0115117938db] young camel toe [/url]
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/2610aba4ba416849] camel toe junction [/url]
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/bf2a19306f3fb66b] rate my cameltoe [/url]
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/14421c520b8a637f] little camel toe [/url]
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/e3556d6ff32dc53b] camel toe pictures [/url]
    [url=http://groups.google.com/group/teen-camel-toe/browse_thread/thread/3967e5891d42d278] shaved camel toe [/url]
    [url=http://groups.google.com/group/bangkok-escorts/browse_thread/thread/88071ddf900d4b83] escort service [/url]
    [url=http://groups.google.com/group/bangkok-escorts/browse_thread/thread/73afdd5645560561] escort berlin [/url]
    [url=http://groups.google.com/group/bangkok-escorts/browse_thread/thread/9c4eb39a07ac4c2a] escort frankfurt [/url]
    [url=http://groups.google.com/group/bangkok-escorts/browse_thread/thread/858247e7defbe389] escortservice stuttgart [/url]
    [url=http://groups.google.com/group/bangkok-escorts/browse_thread/thread/eb19f288c90c2f7d] escort hamburg [/url]
    [url=http://groups.google.com/group/bangkok-escorts/browse_thread/thread/6731476f86cda39a] escort damen [/url]
    [url=http://groups.google.com/group/bangkok-escorts/browse_thread/thread/ac04884b1c7292b9] bangkok escorts [/url]
    [url=http://groups.google.com/group/bangkok-escorts/browse_thread/thread/f9c893a483284a95] escort dresden [/url]
    [url=http://groups.google.com/group/robbs-celebs-oops/t/ff47097d3fd90c57] vacances celibataire [/url]
    [url=http://groups.google.com/group/robbs-celebs-oops/browse_thread/thread/ff47097d3fd90c57] club celibataire [/url]
    [url=http://groups.google.com/group/robbs-celebs-oops/browse_thread/thread/47c755e14243ae29] celibataire rencontre [/url]
    [url=http://groups.google.com/group/robbs-celebs-oops/browse_thread/thread/543b49bc848ada13] rencontre entre celibataire [/url]
    [url=http://groups.google.com/group/lesbian-teen-fingering/browse_thread/thread/19c1c9a5947c4b82] lesbian dating [/url]
    [url=http://groups.google.com/group/lesbian-teen-fingering/browse_thread/thread/a956d317ce21c8a5] lesbian sex movie [/url]
    [url=http://groups.google.com/group/achat-film-erotique/browse_thread/thread/7c640853aee5cd76] photo erotique [/url]
    [url=http://groups.google.com/group/achat-film-erotique/browse_thread/thread/2fa7d4633370086e] recits erotique [/url]
    [url=http://groups.google.com/group/achat-film-erotique/browse_thread/thread/1183607b193b5bca] litterature erotique [/url]
    [url=http://groups.google.com/group/filmato-trasmessi-internet-porno/browse_thread/thread/9edf7362eedd4ad4] porno film [/url]
    [url=http://groups.google.com/group/filmato-trasmessi-internet-porno/browse_thread/thread/ee8c00843af04cf2#] filmino porno gratis [/url]
    [url=http://groups.google.com/group/filmato-trasmessi-internet-porno/browse_thread/thread/75ca8c242c03ff0d#] trailer film porno [/url]
    [url=http://groups.google.com/group/filmato-trasmessi-internet-porno/browse_thread/thread/12751b77abc3181c] film black porno [/url]
    [url=http://groups.google.com/group/bdsm-video-hot/browse_thread/thread/ada0d1e6d244d9c4] jeu video vga box [/url]

  22. [url=http://www.gametrailers.com/users/celebrex4/gamepad/]celebrex prescription america[/url] recommend [url=http://www.gametrailers.com/users/celebrex5/gamepad/]cheapest celebrex online[/url] , We recommend [url=http://www.gametrailers.com/users/celebrex6/gamepad/]filing suit for celebrex[/url] , and [url=http://www.gametrailers.com/users/celebrex7/gamepad/]side affects of celebrex[/url]
    P.S. Sorry for choosing your site to leave a message about tramadol celebrex

  23. Fairly nice post. I simply came across your website and wished to state that I’ve actually enjoyed searching your site articles. In the end I’ll be registering to your give food to and that i we imagine you create once more quickly!

  24. No wonder why Christian Dillstrom tipped off about your blog page – you are doing a fantastic job as mobile & social media marketing virtuoso is pointing towards you!

  25. We wish by way of thanking anyone once again for that beautiful strategies an individual presented Jeremy when contriving a postgrad analysis and in addition, just remember, related to delivering all the tips in a single writing. When we experienced identified to your website page in 2009, we’ll are already held through the nonessential steps we’re putting into action. Thank you very much.

  26. Lesbian Sex Videos and Movies

    [url=http://songtext-caught.blogspot.com/] spielen spielzeug [/url]
    [url=http://songtext-von-avril-lavigne.blogspot.com/] dinosaurier spielzeug [/url]
    [url=http://songtexte-christina-aguilera.blogspot.com/] quadro spielzeug [/url]
    [url=http://songtext-put-a-little.blogspot.com/] schutzengel spielzeug [/url]
    [url=http://versaute-songtexte.blogspot.com/] perlen spielzeug [/url]
    [url=http://river-song-lyrics.blogspot.com/] sex spielzeug selber basteln [/url]
    [url=http://tochter-sex-chatt-gratis.blogspot.com/] hampelmann spielzeug [/url]
    [url=http://break-it-off-rihanna.blogspot.com/] katalog spielzeug muschel [/url]
    [url=http://libero-pagina-bianca.blogspot.com/] basteln spielzeug [/url]
    [url=http://penis-movies.blogspot.com/] kinderkuche spielzeug [/url]
    [url=http://movies-vancouver.blogspot.com/] spielzeug grosshandel [/url]
    [url=http://groups.google.com/group/phenergan-vc-wcodeine] sexspielzeug selbermachen [/url]
    [url=http://groups.google.com/group/phenergan-vc-wcodeine/browse_thread/thread/d288dad54767d47d] link kondom sexspielzeug.de [/url]
    [url=http://groups.google.com/group/phenergan-vc-wcodeine/browse_thread/thread/4034677a8f020406] dickie elektrisch spielzeug [/url]
    [url=http://groups.google.com/group/phenergan-vc-wcodeine/browse_thread/thread/2fcf7aa803916234] spielzeug kaufladen [/url]
    [url=http://groups.google.com/group/phenergan-vc-wcodeine/browse_thread/thread/e6610cd3afa9136b] puppenhaus spielzeug [/url]
    [url=http://groups.google.com/group/phenergan-vc-wcodeine/browse_thread/thread/cf03aa15cc13bc75] spielzeug plastik [/url]
    [url=http://groups.google.com/group/phenergan-vc-wcodeine/browse_thread/thread/3bfe12c0552193de] sex spielzeug selber basteln [/url]
    [url=http://groups.google.com/group/phenergan-vc-wcodeine/browse_thread/thread/638a244a7513f055] dora spielzeug [/url]
    [url=http://groups.google.com/group/best-college-degrees-06] tiny love spielzeug [/url]
    [url=http://groups.google.com/group/best-college-degrees-06/browse_thread/thread/3593bacc75c6de20] stuttgart spielzeug [/url]
    [url=http://groups.google.com/group/best-college-degrees-06/browse_thread/thread/cf91d6f97a815c0a] spielzeug star wars [/url]
    [url=http://groups.google.com/group/best-college-degrees-06/browse_thread/thread/34248ba0a04fad29] spielzeug selbstgemacht [/url]
    [url=http://groups.google.com/group/best-college-degrees-06/browse_thread/thread/bb50e0b4bf18a801] perlen spielzeug [/url]
    [url=http://groups.google.com/group/best-college-degrees-06/browse_thread/thread/bf259b1adfa38453] spielzeug fur hunde [/url]
    [url=http://groups.google.com/group/best-college-degrees-06/browse_thread/thread/6470e2a233cc6b0d] spielzeug im internet kaufen [/url]
    [url=http://groups.google.com/group/best-college-degrees-06/browse_thread/thread/6e388677a2d64279] spielzeug laden [/url]
    [url=http://groups.google.com/group/best-college-degrees-06/browse_thread/thread/4e0948f1c7a07ee7] jim knopf spielzeugland [/url]
    [url=http://latin-sex-movies.blogspot.com/] midnight movies [/url]
    [url=http://milf-mom-free.blogspot.com/] road movies filmproduktion [/url]
    [url=http://jokes-movies.blogspot.com/] nemo movies [/url]
    [url=http://jasper-indiana-milf.blogspot.com/] celebs nude in movies [/url]
    [url=http://home-builder-milford.blogspot.com/] gratis xxx movies [/url]
    [url=http://blonde-milfs-sexy.blogspot.com/] slut movies [/url]
    [url=http://anhangerkupplung-mercedes.blogspot.com/] russian porn movies [/url]
    [url=http://madonna-i-am-going.blogspot.com/] cruel movies [/url]
    [url=http://lyrics-wake-me-up.blogspot.com/] private mature movies [/url]
    [url=http://such-shame-lyrics-bahar.blogspot.com/] teen pussy movies [/url]
    [url=http://forgotten-lyrics.blogspot.com/] sexy manga movies [/url]
    [url=http://field-abiding-lyrics.blogspot.com/] sex videos live movies [/url]
    [url=http://all-american-lyrics.blogspot.com/] african sex movies [/url]
    [url=http://britneyspears-lyrics-sometimes.blogspot.com/] lingerie movies [/url]
    [url=http://inurl-bait-bus-movies.blogspot.com/] chicks porn movies [/url]
    [url=http://brutal-hardcore-pornomovies.blogspot.com/] kinder movies [/url]
    [url=http://sex-cartoons-movies.blogspot.com/] sex movies von teens [/url]
    [url=http://porno-movies-deutsch.blogspot.com/] traci lords movies [/url]
    [url=http://naked-madonnaa.blogspot.com/] extrem hardcore movies [/url]
    [url=http://madonna-something-to.blogspot.com/] hardcore babes movies [/url]
    [url=http://das-ist-or-lyrics.blogspot.com/] ftp movies download [/url]
    [url=http://your-soul-lyrics.blogspot.com/] i love movies porn [/url]
    [url=http://b5-lyrics-to-all-do.blogspot.com/] blow jobs movies [/url]
    [url=http://my-madonna-lyrics.blogspot.com/] omasex movies [/url]
    [url=http://groups.google.com/group/osterhase-lyrics] kostenlose prono movies [/url]
    [url=http://groups.google.com/group/osterhase-lyrics/browse_thread/thread/4b48a5ad91efcafb] sims 2 movies [/url]
    [url=http://groups.google.com/group/osterhase-lyrics/browse_thread/thread/f6c8b744d691848b] fisch movies [/url]
    [url=http://groups.google.com/group/osterhase-lyrics/browse_thread/thread/94ef362d14913142] cs movies download [/url]
    [url=http://fergie-lyrics-all.blogspot.com/] uniform sex movies [/url]
    [url=http://lady-pank-lyrics.blogspot.com/] porno movies videos [/url]
    [url=http://aladdin-lyrics-can-show.blogspot.com/] dogsex freemovies [/url]
    [url=http://dixie-chicks-lyricss.blogspot.com/] latex pics movies [/url]
    [url=http://groups.google.com/group/landmark-education-l-l-l-l] porn movies clips [/url]
    [url=http://groups.google.com/group/landmark-education-l-l-l-l/browse_thread/thread/837a7c9517a69d06] babes tv movies [/url]
    [url=http://groups.google.com/group/landmark-education-l-l-l-l/browse_thread/thread/e85e9b24d2f0c4a5] www sex movies [/url]
    [url=http://groups.google.com/group/landmark-education-l-l-l-l/browse_thread/thread/80178a4b5f076a30] movies with children [/url]
    [url=http://groups.google.com/group/landmark-education-l-l-l-l/browse_thread/thread/a5839c42357d116e] amateur movies sex [/url]
    [url=http://groups.google.com/group/landmark-education-l-l-l-l/browse_thread/thread/1513c2aa9c8035fb] bi boob movies [/url]
    [url=http://groups.google.com/group/landmark-education-l-l-l-l/browse_thread/thread/7468aa0f3aaecbec] home fuck movies.com [/url]
    [url=http://groups.google.com/group/landmark-education-l-l-l-l/browse_thread/thread/be94710a404b0d4d] free sex movies [/url]
    [url=http://groups.google.com/group/geile-gratis-seiten-hartcore] bodybuilder movies [/url]
    [url=http://groups.google.com/group/geile-gratis-seiten-hartcore/browse_thread/thread/d00a65ba55a6de36] fre porn movies [/url]
    [url=http://groups.google.com/group/geile-gratis-seiten-hartcore/browse_thread/thread/9681556481450ce6] lesbian pussy movies [/url]
    [url=http://groups.google.com/group/geile-gratis-seiten-hartcore/browse_thread/thread/b7801740caab40a4] funny movies de [/url]
    [url=http://groups.google.com/group/geile-gratis-seiten-hartcore/browse_thread/thread/92d7a1a51eb1dc7f] movies 14 [/url]
    [url=http://groups.google.com/group/geile-gratis-seiten-hartcore/browse_thread/thread/95e12a48ce0bf6b4] indian sex movies [/url]
    [url=http://groups.google.com/group/geile-gratis-seiten-hartcore/browse_thread/thread/83d5f05c9ace9a9b] rompmovies download 1 99 [/url]
    [url=http://groups.google.com/group/geile-gratis-seiten-hartcore/browse_thread/thread/8df34b9f77cb2701] movies clips porno [/url]
    [url=http://groups.google.com/group/geile-gratis-seiten-hartcore/browse_thread/thread/e17bcc3f55d36dca] free fetish movies [/url]
    [url=http://rush-the-floor-lyrics.blogspot.com/] like jesus lyrics [/url]
    [url=http://karibik-2-wallpaper.blogspot.com/] aerosmith lyrics angel [/url]
    [url=http://woman-ghetto-lyrics.blogspot.com/] more to life lyrics [/url]
    [url=http://kaffeemaschine-siemens.blogspot.com/] life burns lyrics [/url]
    [url=http://karibik2-die-legende.blogspot.com/] winter in kanada lyrics [/url]
    [url=http://riesen-kaffeetasse.blogspot.com/] over my head lyrics sum [/url]
    [url=http://jobsuche-muenchen.blogspot.com/] picture of my life lyrics [/url]
    [url=http://handy-logos-ohne-abo.blogspot.com/] lyrics scissor sisters dont feel [/url]
    [url=http://jobsuche-munster.blogspot.com/] sein so schoen lyrics [/url]
    [url=http://arizona-golf-resort.blogspot.com/] hip hurra lyrics [/url]
    [url=http://zahnriemen-golf-tdi.blogspot.com/] sarah connor lyrics [/url]
    [url=http://geile-weiber-fotos-gratis.blogspot.com/] a new day lyrics [/url]
    [url=http://berlin-tanzen.blogspot.com/] throw that beat lyrics [/url]
    [url=http://lesbian-sex-videos-com.blogspot.com/] weather outside is lyrics [/url]
    [url=http://island-ghost-stories.blogspot.com/] mario your the one lyrics [/url]
    [url=http://spielzeug-maehdrescher.blogspot.com/] drives me crazy lyrics [/url]
    [url=http://do-for-love-songtext.blogspot.com/] oh happy day lyrics [/url]
    [url=http://good-things-song-lyrics.blogspot.com/] wasting my time lyrics [/url]

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>