Script Summary: Likely needs an update as of 2013-05-20 to conform to new Flickr search UI. ------------ Insert a link to more photos by a camera model for that user when EXIF model data is present and visible. (Translation Help Requested)
Now in French and Spanish!
If you can offer translation of the 3 text variables near the top of the script into one of the flickr supported languages please leave comment in the UserScripts discussion area or send me a message.
// default strings
var paraText = 'More ';
var linkText = 'by ${author_name} with this camera';
var toolText = 'See more photos by ${author_name} taken with the ${camera_name}';v0.2.2 confirmed working in FireFox, Safari, & Opera GM implementations.
I couldn't get Chromium to find my userscripts? :-(

// FlickrMorePhotosByModel // version 0.2.2 // 2009-07-11 // Copyright (c) 2009, Ryan Gallagher http://mailhide.recaptcha.net/d?k=01s3QDaQrXNmFOMTttoahPPg==&c=45a75vsPJHUAbaWaf7hEep0XEaP0u0DkmwFiSB8MBeM= // Released under the GPL license // http://www.gnu.org/copyleft/gpl.html // // -------------------------------------------------------------------- // This is a Greasemonkey user script. // // To install, you need Greasemonkey: http://greasemonkey.mozdev.org/ // Then restart Firefox and revisit this script. // Under Tools, there will be a new menu item to "Install User Script". // Accept the default configuration and install. // // IF YOU ARE UPGRADING FROM A PREVIOUS VERSION OF THIS SCRIPT, go to // Tools/Manage User Scripts and manually uninstall the previous // version before installing this one. This script lacks an auto-update // prompt. // // Go here for latest version: // http://userscripts.org/scripts/show/53489 // // To uninstall, go to Tools/Manage User Scripts, select this script, // and click Uninstall. // // -------------------------------------------------------------------- // What It Does: // // www.flickr.com (photo page): // // This script adds a bit of text and a link under the "Additional Info" // section when the camera data is exposed (a flickr user preference). // The link takes you to "more photos by the same user with the same // camera", a little known URL hack of the main search interface. // // Default sorting (recent, interesting, relevent) and display mode // (thumbnails vs details) can be configured at the top of the script. // // -------------------------------------------------------------------- // Change Log: // // v0.2.2 2007-07-11 // * Added first translations (French + Spanish) Thanks! // * moved away from innerHTML, hopefull to remove safari bugs. // v0.2.1 2007-07-11 // * Resorted to z=t display default, z=e only valid for people // seeing the beta/testing search result UI.// // v0.2 2007-07-11 // * Changed check for unsafeWindow, Avoid error in Safari GreaseKit? // Tested with user-scripts in Opera 9 (PC). // * Modified include/exclude to *flickr.*/ from *flickr.com/ // * Added top level check for flickr + photo page // (since include/exclude sucks) // * Added additional display choice for medium photos // (flickr updated results interface to allow this), made it new default. // * Added Change Log + Todo // v0.1 2007-07-08 // * Initial Version // // -------------------------------------------------------------------- // To Do: // // * Confirm working in Safari Greasekit? // * Populate remaining translations // * Test in Chromium build with greasemonkey // * Add check for updated version (would love with all my scripts) // * Handle bug with known make unknown model (Polaroid Example) // http://www.flickr.com/photos/flickrwegian/2437536744 // * Add make/model restriction search option to the search dropdown? // * Add toggle transform tag links to make make/model specific? // // -------------------------------------------------------------------- // ==UserScript== // @name FlickrMorePhotosByModel // @namespace http://www.ryangallagher.name // @description Insert a link to more photos by a camera model for that user when EXIF model data is present and visible. // @include http://*flickr.*/photos/*/* // // @exclude http://*flickr.*/photos/organize/* // @exclude http://*flickr.*/photos/friends/* // @exclude http://*flickr.*/photos/tags/* // // @exclude http://*flickr.*/photos/*/sets* // @exclude http://*flickr.*/photos/*/friends* // @exclude http://*flickr.*/photos/*/archives* // @exclude http://*flickr.*/photos/*/tags* // @exclude http://*flickr.*/photos/*/alltags* // @exclude http://*flickr.*/photos/*/multitags* // @exclude http://*flickr.*/photos/*/map* // @exclude http://*flickr.*/photos/*/favorites* // @exclude http://*flickr.*/photos/*/popular* // @exclude http://*flickr.*/photos/*/with* // @exclude http://*flickr.*/photos/*/stats* // @exclude http://*flickr.*/photos/*/page* // // @exclude http://*flickr.*/photos/*/*/sizes/* // @exclude http://*flickr.*/photos/*/*/stats* // ==/UserScript==



