New in MBS FileMaker Plugin 12.0

In this article we want to introduce you the new functions from the MBS FileMaker Plugin in version 12.0.

WebHook

We have already introduced the WebHook component in the last release. It makes the connection between devices or systems that support the WebHook technology and your FileMaker application possible. In this release we added a few more functions to support you when working with WebHooks.
Our WebHook functions got a new timeout property to prevent connections staying open forever without sending a request. You can set the time for the TimeOut yourself. To do this, use the new WebHook.SetTimeOut function. The default value is 5 minutes. The time is specified in seconds. With the WebHook.GetTimeOut you can query this value again. Furthermore you can use WebRequest. GetState to get the current state of a web request. As return we get a number between 0 and 3 which have the following meanings:

  1. freshly allocated
  2. connection received
  3. data arrived
  4. processed
If you use WebHook.Check, you may only see requests with state 3, but if you use WebHook.List, you may see earlier states like 1 and 2.

(more)

dotfmp 2022

Did you sign up for FileMaker Conference dotfmp.berlin 2022?

This conference is organized by Egbert Friedrich and takes place from 2nd to 4th June 2022 in Berlin, Germany.
After two years of waiting, this may be the first in-person conference for FileMaker developers in English.

Already 30 developers are signed up from 15 countries: 🇧🇪, 🇬🇧, 🇱🇻, 🇩🇪, 🇺🇸, 🇬🇷, 🇮🇹, 🇳🇱, 🇳🇴, 🇪🇸, 🇫🇷, 🇨🇭, 🇦🇹, 🇩🇰 and 🇫🇷

Who
dotfmp is an effort of various leading European FileMaker Developers. It is meant to bring all kinds of higher level developers together to share knowledge, educate and challenge each other.

When
dotfmp starts at the 1 June 2022 in the later afternoon with a relaxed "Beer and Sausages" as a kind of "Pre-opening" in one of the most famous Berlin Beergardens, the „Pratergarten“. That way people pop by whenever they've arrived without being in a hurry.
The session days itself last from 2 until 4 June from 9:00 till 18:00 with various socialising events in the evenings.

What
dotfmp is a 3 Day-Unconference, Meetup, Hangout or Barcamp. It is an informal and self-organized effort to meet on a personal base. Still no idea what this mean? Then have a look here!

Where
dotfmp saw some of the most famous places and like time passes by we're heading to new shores in 2022. The Schankhalle Pfefferberg s located in a vibrant area with a short walking distance to all the famous restaurants. Please have a look at the map below or at Event details for more informations.

Why
We feel there are far too few possibilities to talk to, learn from, and hangout with fellow developers in a relaxed and informal environment. And we‘d like to share work and get feedback from people chewing on similar challenges.

Please sign up if you are interested on dotfmp.berlin and check the FAQ for more details.

MBS @ FMTraining.TV

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch. And they have a huge library of FileMaker training material to watch and learn all about the Claris FileMaker product family.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

We show some tricks on how to use hotkeys to do tricks in the Script Workspace like insert a snippet of script lines. And then we look around for a few Windows related plugin functions.

(more)

Invitation à la 7e Conférence Québécoise des Développeurs Filemaker®

Once again our friends in Canada organise a FileMaker conference in Montreal, so time to practice some French:

Le Regroupement FMQC.CA vous convie à son grand rassemblement, les 15-16 septembre 2022, à l’Auberge Saint-Gabriel du Vieux-Montréal, afin d’apprendre les astuces enseignées par des intervenants de la scène internationale et de découvrir les nouveautés de la plateforme FileMaker qui nous tient tant à cœur et qui nous passionne.

Un total de 14 sessions et topos seront présentés par des intervenants provenant de la France, des États-Unis, de l’Ontario et du Québec. La CQDF 2022 regroupera près de 100 développeurs de tous les niveaux, qui ensemble, rejoignent un bassin de plus de 5000 utilisateurs FileMaker de tous les coins du Québec ainsi qu’ailleurs dans le monde.

Situé en plein cœur du Vieux-Montréal, l’Auberge Saint-Gabriel est à quelques minutes de marche de la station de métro Place d’Armes (ligne Orange). L’accès internet sans fil sera offert tout au long des conférences.

Vous pouvez vous inscrire directement sur le site web de la conférence avant le 12 juin 2022 et ainsi profiter d’un rabais «Réservation hâtive» de 50$ sur les frais d'inscription.

Monkeybread Software sponsors this event and if possible, I hope to see you there!

Trace with parameter names

Our MBS Trace function will get an upgrade for the version 12.1 of MBS FileMaker Plugin: Since we now sync parameter names as metadata into our C code, we can show it in the user interface on macOS, currently planned with a tooltip on function names:



We add Plugin.GetFunctionParameters function to query it programmatically and we use it to annotate our trace logs:

09:02:16.113929+0100 MBS Plugin version 12.0.0.10 for Mac 64-bit loaded for FileMaker Pro 19.4.
09:02:35.847284+0100 Script "Run" in file "Barcode Generation".
09:02:35.847336+0100 MBS Plugin call #1 with 10 parameters.
09:02:35.847382+0100 Parameter 0 FunctionName: "Barcode.Generate"
09:02:35.847413+0100 Parameter 1 symbology: "UPCE"
09:02:35.847453+0100 Parameter 2 Text: "1123456"
09:02:35.847482+0100 Parameter 3 width: 0
09:02:35.847510+0100 Parameter 4 height: 0
09:02:35.847548+0100 Parameter 5 rotation: 0
09:02:35.847589+0100 Parameter 6 scale: 4
09:02:35.847629+0100 Parameter 7 Transparent: 0
09:02:35.847656+0100 Parameter 8 ShowText: 1
09:02:35.847681+0100 Parameter 9 Encoding: "UTF-8"
09:02:36.246356+0100 Result #1: "18001"
09:02:36.246474+0100 MBS Plugin call #2 with 1 parameters.
09:02:36.246511+0100 Parameter 0 FunctionName: "IsError"
09:02:36.246659+0100 Result #2: 0
09:02:36.246854+0100 MBS Plugin call #3 with 3 parameters.
09:02:36.246887+0100 Parameter 0 FunctionName: "GMImage.WriteToPNGContainer"
09:02:36.246915+0100 Parameter 1 ImageRef: "18001"
09:02:36.246939+0100 Parameter 2 Filename: "barcode.png"
09:02:36.259191+0100 Result #3: Binary Data with 3 streams, 2503 Bytes in total: FNAM "file:barcode.png", PNGf "‰PNG........IHDR...8...Ø.....@ْé....bKGD.ÿ.ÿ.ÿ ½§“...|IDATxÚíÝÑn›@.@ÁRõÿ\^?™¾¶‘bä°ËÂñÌkd..@G˕Ùö}ß\^?ñc", SIZE 568 x 472
09:02:36.259617+0100 MBS Plugin call #4 with 2 parameters.
09:02:36.259660+0100 Parameter 0 FunctionName: "GMImage.Destroy"
09:02:36.259690+0100 Parameter 1 ImageRef: "18001"
09:02:36.260021+0100 Result #4: "OK"

As you see the parameter names are now showing there right in the log. We hope this helps you debug the functions.
Coming soon in 12.1pr1.

XML and JSON Colorize for Dark Mode

As more people now use dark mode on macOS and Windows for the GUI, it's time to update our XML.Colorize and JSON.Colorize functions:



We get a new parameter DarkMode for those functions to turn on using a different color set. We not just swap black and white, but also make the colors a bit lighter.
Will come in 12.1pr1 next month.

Which would you prefer?

MBS FileMaker Plugin 12.0 - More than 6700 Functions In One Plugin

Nickenich, Germany - (January 18th, 2022) -- MonkeyBread Software today is pleased to announce MBS FileMaker Plugin 12.0 for macOS, iOS, Linux and Windows, the latest update to their product that is easily the most powerful plugin currently available for Claris FileMaker produce line. As the leading database management solution for Windows, macOS, iOS and the web, the Claris FileMaker Pro Integrated Development Environment supports a plugin architecture that can easily extend the feature set of the application. MBS FileMaker Plugin 12.0 has been updated and now includes over 6700 different functions, and the versatile plugin has gained more new functions:

For our developers using macOS we got a great new feature for the Script Workspace: Auto Complete. Our plugin can scan the lines in the script to find variable definitions and then present you possible variables names to auto complete in the calculation dialogs. For Let statements we can additionally auto complete local variable names starting with ¢ (cent), _ (underscore) and ~ (tilde) characters.

We updated our tools buttons in calculation dialogs and added two new buttons there: You can now add or remove table occurrence prefixes for field names within calculation dialogs. This may help when you copy calculations between field definition and data viewer. And for value lists we can now show the IDs and we have functions to convert between names and identifiers of value lists.

Our SQL functions got an optimisation to better handle numbers and avoid the inprecision of double data type in most cases. Databases supporting decimal types with exact precision should now handle numbers correctly. For SQL within FileMaker our new FM.ExecuteFileSQLValue can load a single value via SQL from a FileMaker table and return it to you. This preserves the data type and numbers, containers and time/date values are not converted to text.

Our WebHook functions got a new timeout property to prevent connections staying open forever without sending a request. With WebRequest.GetState you can now query the state of a request.

For Files functions we added functions to query file extension hidden and backup exclusion state on macOS. We improved Events functions to query contact identifier for a birthday event.

For DynaPDF we have new methods for complex text rendering. This includes defining alternative font lists (currently Windows only) and doing automatic font substitution.

For AVRecorder on Windows we added AVRecorder.VideoResolutions to query resolutions on Windows and pick one with AVRecorder.SetVideoDevice function.

We added a new Preferences.List function to list preference keys. The Text.TextToHTML function can handle subscript and superscript text. The ProgressDialog.SetPositionWindowCentered function can center progress dialog on top of a window. For our use of LibXML, we now explicitly disable network access. And XML.Query function can now take namespaces in quotes. The WordFile functions can now better handle tab character in text.

Finally we updated the archive library to version 3.5.2, cpuid to 0.51, CURL to 7.81.0, DynaPDF to 4.0.65.167, expat to 2.4.1, LCMS to 2.13rc1, lz4 to 1.9.3, openssl to 1.1.1l, SQLAPI to 5.1.8, SQLite to 3.37.0, ssh2 to 1.10.0, SystemInfo.CPUBrandString to work on Apple Silicon, and LibXL to version 4.0.1.

See release notes for a complete list of changes.

Neues MBS FileMaker Plugin 12.0

18. Januar 2022 - Monkeybread Software veröffentlicht heute das MBS FileMaker Plugin für FileMaker in Version 12.0, mit inzwischen über 6700 Funktionen eines der größten FileMaker Plugins überhaupt. Hier einige der Neuerungen:

Für unsere Entwickler auf macOS haben wir eine großartige neue Funktion für den Skript-Arbeitsbereich: Auto-Vervollständigen. Unser Plugin kann die Zeilen im Skript nach Variablendefinitionen durchsuchen und Ihnen dann mögliche Variablennamen zur automatischen Vervollständigung in den Formeldialogen präsentieren. Bei SetzeVar Anweisungen können wir zusätzlich lokale Variablennamen automatisch vervollständigen, die mit den Zeichen ¢ (Cent), _ (Unterstrich) und ~ (Tilde) beginnen.

Wir haben die Werkzeuge im Berechnungsdialog um zwei Buttons hinzugefügt: Sie können jetzt Tabellenauftreten-Präfixe für Feldnamen in Formeldialogfeldern hinzufügen oder entfernen. Dies kann hilfreich sein, wenn Sie Berechnungen zwischen Felddefinition und Datenanzeige kopieren. Und für Wertelisten können wir jetzt die IDs anzeigen und wir haben Funktionen zur Konvertierung zwischen Namen und Bezeichnern für Wertelisten.

Unsere SQL-Funktionen wurden optimiert, um besser mit Zahlen umgehen zu können und die Ungenauigkeit von Double-Datentypen in den meisten Fällen zu vermeiden. Datenbanken, die Dezimaltypen mit exakter Genauigkeit unterstützen, sollten nun korrekt mit Zahlen umgehen. Für SQL innerhalb von FileMaker kann unser neues FM.ExecuteFileSQLValue einen einzelnen Wert über SQL aus einer FileMaker-Tabelle laden und an Sie zurückgeben. Dabei bleibt der Datentyp erhalten und Zahlen, Container und Zeit-/Datumswerte werden nicht nach Text konvertiert.

Unsere WebHook-Funktionen haben eine neue Timeout-Eigenschaft erhalten, um zu verhindern, dass Verbindungen ewig offen bleiben, ohne dass eine Anfrage gesendet wird. Mit WebRequest.GetState können Sie nun den Status einer Anfrage abfragen.

Bei den Dateifunktionen wurden Funktionen zur Abfrage von versteckten Dateierweiterungen und zum Ausschluss von Backups unter macOS hinzugefügt. Wir haben die Events-Funktionen verbessert, um die Kontaktkennung für ein Geburtstagsereignis abzufragen.

Für DynaPDF gibt es neue Methoden für komplexes Textrendering. Dazu gehören die Definition alternativer Schriftartenlisten (derzeit nur für Windows) und die automatische Ersetzung von Schriften.

Für AVRecorder unter Windows haben wir AVRecorder.VideoResolutions hinzugefügt, um Auflösungen unter Windows abzufragen und mit der Funktion AVRecorder.SetVideoDevice auszuwählen.

Wir haben eine neue Funktion Preferences.List hinzugefügt, um Namen für Voreinstellungen aufzulisten. Die Funktion Text.TextToHTML kann mit tief- und hochgestelltem Text umgehen. Die Funktion ProgressDialog.SetPositionWindowCentered kann den Fortschrittsdialog am oberen Rand eines Fensters zentrieren. Für unsere Verwendung von LibXML deaktivieren wir jetzt explizit den Netzwerkzugriff. Und die Funktion XML.Query kann nun Namespaces in Anführungszeichen akzeptieren. Die WordFile-Funktionen können nun besser mit Tabulatorzeichen im Text umgehen.

Schließlich haben wir die Archivbibliothek auf Version 3.5.2, cpuid auf 0.51, CURL auf 7.81.0, DynaPDF auf 4.0.65.167, expat auf 2.4.1, LCMS auf 2.13rc1, lz4 auf 1. 9.3, openssl auf 1.1.1l, SQLAPI auf 5.1.8, SQLite auf 3.37.0, ssh2 auf 1.10.0, SystemInfo.CPUBrandString für Apple Silicon und LibXL auf Version 4.0.1.

Alle Änderungen in den Release Notes.

Professional software release

Let us show you 10 steps on what to think about for professional software releases:

  • Release often

    Do frequent smaller releases, so you can better train your releases.
    If you do it once a year, you forget all the steps and miss some.

  • Plan your releases. When do you intent to release?

    Start the process a week before, at least to be sure you are ready.
    You may prefer to targeting specific weeks, where you have no family event planned or vacation.
    Or release a week before a conference, so the release is out and you can present it.

  • Write down all steps needed.

    Setup a list of things you do for a release. That may start a week before with drafting announcement texts.
    Your list needs to include what files to update (readme files), what things to copy where, how to build, code sign, package, notarize and upload the app.
    It is very easy to miss an important step early and then you have to redo a lot of steps.
    Try the steps on another computer for a training release, so you can make sure nothing is missing or depends on an application installed on the computer.
    Always great if multiple people could do the job on multiple computers.

(more)

MBS FileMaker Plugin, version 12.0pr9

New in this prerelease of version 12.0 of the MBS FileMaker Plugin:
  • Updated DynaPDF to version 4.0.65.167.
Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in Dropbox folder or ask for being added to the dropbox shared folder.

MBS FileMaker Plugin, version 12.0pr8

New in this prerelease of version 12.0 of the MBS FileMaker Plugin: Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in Dropbox folder or ask for being added to the dropbox shared folder.

Register Script for MBS Plugin

Did you know that we two functions to register: Register and StoreRegistration. You know the difference is whether you register until FileMaker quits or permanently. For most users, StoreRegistration is now the better choice. The license key is written to the preferences file and the plugin is registered when launched.

Your license script may look like this for a seats license:

# Register MBS Plugin:
If [ MBS("IsRegistered") ≠ 1 ]
  Set Variable [ $r ; Value: MBS("StoreRegistration"; "Your Name"; "Complete"; "5 Seats"; 202212; "...") ]
  If [$r ≠ "OK"]
    Show Custom Dialog ["Problem with MBS Plugin Registration"; $r]
  End If
End If

With checking using IsRegistered function, we avoid to register again and again on each startup, which just wastes CPU time. And by using StoreRegistration, the license key is stored permanently, so this script doesn't need to run again until the old license key expired. When it expired and a new plugin doesn't accept it, the stored key gets deleted on startup silently and the script can install a new key. (more)

Our button to add or remove table occurrences

As you may know we have some tools in the plugin for macOS to make the live easier in FileMaker. For various dialogs to enter calculations we got check syntax and evaluate buttons. That is convenient to make a syntax check or to evaluate the current calculation in the current context to test it without closing the dialog.

For MBS FileMaker Plugin in version 12.0 we change the buttons to be a segmented control with four segments to do the syntax check, evaluate and now adding and removing table occurrences:

As you see we got a button labeled "+ TO" and one named "- TO". The labels may change later in case we localise it or find nice graphics for them. The buttons run some code from the plugin to lookup the field names in the table on the left with the table name from the popup menu above. This may help you when you have to copy calculations from field definitions to calculations in scripts or data viewer.

Internally we use a regular expression to do this and it looks for the field names and add the prefix for the table occurrence for you. Same for removing where we look for table::field combination and replace with only field names.

Please try the feature in 12.0pr7 or upcoming pr8 to help us fix all bug before release. The feature is available on macOS for various dialogs including field definition dialog and data viewer.


MBS FileMaker Plugin, version 12.0pr7

New in this prerelease of version 12.0 of the MBS FileMaker Plugin: Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in Dropbox folder or ask for being added to the dropbox shared folder.

MBS @ FMTraining.TV

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch. And they have a huge library of FileMaker training material to watch and learn all about the Claris FileMaker product family.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

This is the second day of our walk through of the goodies in MBS Plugin to enhance FileMaker on macOS.

Do you like this video?

Please let Richard know and send him your wishes or ideas for future live broadcast as well as topics for training videos. And check out the FileMaker Training bundles as well as their new book for FileMaker.


MBS FileMaker Plugin, version 12.0pr6

New in this prerelease of version 12.0 of the MBS FileMaker Plugin:
  • Enhanced Clipboard.DetectFileMakerDataType and Clipboard.SetFileMakerData to recognize script folders.
  • Fixed a problem with auto complete being too agressive.
  • Changed relationship search field to be smaller.
  • Changed showing of invisible characters in calculations to show more hidden characters like BOM character (Command-I in calculation to enable).
  • Fixed an issue with underscore variables in auto complete.
  • Updated CURL to version 7.81.0.
Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in Dropbox folder or ask for being added to the dropbox shared folder.

MBS @ FMTraining.TV

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch. And they have a huge library of FileMaker training material to watch and learn all about the Claris FileMaker product family.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

This is the first day of our walk through of the goodies in MBS Plugin to enhance FileMaker on macOS.

Do you like this video?

Please let Richard know and send him your wishes or ideas for future live broadcast as well as topics for training videos. And check out the FileMaker Training bundles as well as their new book for FileMaker, updated for 2021.


FileMaker Konferenz 2022 in Hamburg

Vom 22. bis 24. Juni 2022 findet die elfte deutschsprachige FileMaker Konferenz in Hamburg, Deutschland statt. Das JUFA Hotel Hamburg HafenCity liegt direkt neben dem Ausgang der U-Bahn Station HafenCity Universität, nur drei Stationen vom Hauptbahnhof via U4, so dass sich die Anreise per Bahn empfiehlt. FileMaker Anwender und Entwickler können ihre Teilnahme ab heute buchen.

Anmeldung heute

Bitte melden Sie sich an, wenn Sie Interesse an der Konferenz haben. Im März entscheidet sich, ob die Konferenz statt finden kann. Diese Entscheidung hängt von den Anmeldungen und den aktuellen Corona Regeln ab, also bitte Anmelden. Hotel, Flug oder Bahnreise bitte erst später buchen

Möchten Sie Sponsor oder Sprecher werden?

Aktuell sucht der FMK Verein Vorschläge für interessante Vorträge.

Die Veranstalter vom Verein FM Konferenz erwarten auch 2022 rund 180 Entwickler, Anwender, IT-Fachleute und Entscheidungsträger aus Wirtschaft, Bildung und Verwaltung. Rund um über 25 Fachvorträge und Workshops wird es viel Zeit zum Vernetzen in den gemeinsamen Pausen und beim Abendprogramm geben.

MBS Empfang

Für den Vorabend am 21. Juni 2022 möchten wir alle Teilnehmer der Konferenz begrüßen. Treffen Sie andere Teilnehmer beim MBS Apero, gesponsert von Monkeybread Software.

Bei der Anmeldung zur Konferenz können Sie sich gleich mit dafür anmelden, da wir eine Teilnehmerzahl brauchen für das Hotel.

MBS Plugin Workshop

Wir planen einen Schulungstag für den 21. Juni 2022. Anmeldung bei uns.

Die Teilnahme kostet 199 Euro inkl. Verpflegung und MWSt., 149 Euro bei Anmeldung bis zum 12. März. Falls die Konferenz abgesagt wird, fällt die Schulung automatisch aus.


MBS FileMaker Plugin, version 12.0pr5

New in this prerelease of version 12.0 of the MBS FileMaker Plugin: Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in Dropbox folder or ask for being added to the dropbox shared folder.

Happy new year 2022

After 2021, the new year can only be better!



We wish you a happy new year 2022. See you at the next conferences in summer.

Archives

Mar 2024
Feb 2024
Jan 2024
Dec 2023
Nov 2023
Oct 2023
Sep 2023
Aug 2023
Jul 2023
Jun 2023
May 2023
Apr 2023
Mar 2023
Feb 2023
Jan 2023
Dec 2022
Nov 2022
Oct 2022
Sep 2022
Aug 2022
Jul 2022
Jun 2022
May 2022
Apr 2022
Mar 2022
Feb 2022
Jan 2022
Dec 2021
Nov 2021
Oct 2021
Sep 2021
Aug 2021
Jul 2021
Jun 2021
May 2021
Apr 2021
Mar 2021
Feb 2021
Jan 2021
Dec 2020
Nov 2020
Oct 2020
Sep 2020
Aug 2020
Jul 2020
Jun 2020
May 2020
Apr 2020
Mar 2020
Feb 2020
Jan 2020
Dec 2019
Nov 2019
Oct 2019
Sep 2019
Aug 2019
Jul 2019
Jun 2019
May 2019
Apr 2019
Mar 2019
Feb 2019
Jan 2019
Dec 2018
Nov 2018
Oct 2018
Sep 2018
Aug 2018
Jul 2018
Jun 2018
May 2018
Apr 2018
Mar 2018
Feb 2018
Jan 2018
Dec 2017
Nov 2017
Oct 2017
Sep 2017
Aug 2017
Jul 2017
Jun 2017
May 2017
Apr 2017
Mar 2017
Feb 2017
Jan 2017
Dec 2016
Nov 2016
Oct 2016
Sep 2016
Aug 2016
Jul 2016
Jun 2016
May 2016
Apr 2016
Mar 2016
Feb 2016
Jan 2016
Dec 2015
Nov 2015
Oct 2015
Sep 2015
Aug 2015
Jul 2015
Jun 2015
May 2015
Apr 2015
Mar 2015
Feb 2015
Jan 2015
Dec 2014
Nov 2014
Oct 2014
Sep 2014
Aug 2014
Jul 2014
Jun 2014
May 2014
Apr 2014
Mar 2014
Feb 2014
Jan 2014
Dec 2013
Nov 2013
Oct 2013
Sep 2013
Aug 2013
Jul 2013
Jun 2013
May 2013
Apr 2013
Mar 2013
Feb 2013
Jan 2013
Dec 2012
Nov 2012
Oct 2012
Sep 2012
Aug 2012
Jul 2012
Jun 2012
May 2012
Apr 2012
Mar 2012
Feb 2012
Jan 2012
Dec 2011
Nov 2011
Oct 2011
Sep 2011
Aug 2011
Jul 2011
Jun 2011
May 2011
Apr 2011
Mar 2011
Feb 2011
Jan 2011
Dec 2010
Nov 2010
Oct 2010
Sep 2010
Aug 2010
Jul 2010
Jun 2010
May 2010
Apr 2010
Mar 2010
Feb 2010
Jan 2010
Dec 2009
Nov 2009
Oct 2009
Sep 2009
Aug 2009
Jul 2009
Apr 2009
Mar 2009
Feb 2009
Dec 2008
Nov 2008
Oct 2008
Aug 2008
May 2008
Apr 2008
Mar 2008
Feb 2008