/*
REMEMBER - 'Last' line should *not* have a comma at the end: like this
__PORTFOLIO__=[
{name..1...},
{name..2...},
{name..3...}
]
Also, strings cannot have a newline in them:
"Hello
World"
is wrong
You *can* do
"Hello\
World"
but the above will display as "Hello World" on the website since it lacks the
(break tag)
"Hello
World" is right - do a
instead of a new line.
Also, strings cannot have odd characters in them. If you are using
quotation marks, use the plain unstyled ones or you end up with troubles.
Double qoutations needs to be written with a backslash in front: \"
Entries are ordered by appearance in this file, but they are grouped first based on category.
Entries without a text-attribute will use their name as the text.
*/
__PORTFOLIO__=[
/***********************************************
************************************************
***************** EDITABLE *********************
************************************************
***********************************************/
{category:"EDITORIAL",name:"Essence - February 2007",folder:"EDITORIAL/essence",
text:"Essence
Photographer - Len Prince"},
{category:"EDITORIAL",name:"Italian Vogue - June 2007",folder:"EDITORIAL/hilary",
text:"Italian Vogue
Photographer - Emma Summerton"},
{category:"EDITORIAL",name:"Italian Vogue - June 2008",folder:"EDITORIAL/itvogue2008",
text:"Italian Vogue
Photographer - Emma Summerton"},
{category:"EDITORIAL",name:"ID - September 2007",folder:"EDITORIAL/id/gemmachelsea",
text:"ID
Photographer - Emma Summerton"},
{category:"EDITORIAL",name:"ID - February 2008",folder:"EDITORIAL/id/gemmalily",
text:"ID
Photographer - Emma Summerton"},
{category:"EDITORIAL",name:"ID - March 2008",folder:"EDITORIAL/id/raquel",
text:"ID
Photographer - Emma Summerton"},
{category:"EDITORIAL",name:"ID - July 2008",folder:"EDITORIAL/id/july-2008",
text:"ID
Photographer - Emma Summerton"},
{category:"EDITORIAL",name:"Liz Is - Spring 2007, Cover",folder:"EDITORIAL/liz-is/cover",
text:"Liz Is"},
{category:"EDITORIAL",name:"Liz Is - Spring 2007, I",folder:"EDITORIAL/liz-is/I",
text:"Liz Is
Photographer - Anne Menke"},
{category:"EDITORIAL",name:"Liz Is - Spring 2007, II",folder:"EDITORIAL/liz-is/II",
text:"Liz Is
Photographer - Daniel Gabbay"},
{category:"EDITORIAL",name:"Men's Vogue - September 2008",folder:"EDITORIAL/mens-vogue/sept2008",
text:"Men's Vogue
Photographers - Jenny Gage and Tom Betterton"},
{category:"EDITORIAL",name:"Men's Vogue - October 2008",folder:"EDITORIAL/mens-vogue/oct2008",
text:"Men's Vogue
Photographers - Jenny Gage and Tom Betterton"},
{category:"EDITORIAL",name:"V Magazine - Summer 2008",folder:"EDITORIAL/v",
text:"V Magazine
Photographer - Matthu Placek"},
{category:"EDITORIAL",name:"V Magazine - December 2008",folder:"EDITORIAL/v/dec-2008",
text:"V Magazine
Photographer - Matthu Placek"},
{category:"EDITORIAL",name:"Visionaire / 54 Sport",folder:"http://www.visionaireworld.com/",
text:""},
//*
{category:"EDITORIAL",name:"Vogue China - January 2009",folder:"EDITORIAL/vogue-china/jan-2009",
text:"Vogue China
Photographer - Matthu Placek"},
//*/
{category:"ADVERTISING",name:"Ballantyne",folder:"ADVERTISING/ballantyne",
text:"Ballantyne
Photographer - Emma Summerton"},
{category:"ADVERTISING",name:"Carter's",folder:"ADVERTISING/carters",
text:"Carter's
Photographyer - Luca Zordan"},
{category:"ADVERTISING",name:"Chicago",folder:"ADVERTISING/chicago",
text:"\"Chicago\"
Photographer - Len Prince"},
{category:"ADVERTISING",name:"Estee Lauder",folder:"ADVERTISING/estee-lauder",
text:"Estee Lauder
Photographer - Len Prince"},
{category:"ADVERTISING",name:"Freemans Sporting Club",folder:"ADVERTISING/fsc",
text:"Freemans Sporting Club
Photographer - Matthu Placek"},
{category:"ADVERTISING",name:"Gucci",folder:"ADVERTISING/gucci",
text:"Gucci
Photographer - John-Paul Pietrus"},
{category:"ADVERTISING",name:"Nanette Lepore",folder:"ADVERTISING/nanette-lepore",
text:"Nanette Lepore
Photographer - Poppy de Villeneuve"},
{category:"ADVERTISING",name:"Neiman Marcus",folder:"ADVERTISING/neiman",
text:"Neiman Marcus
Photographer - Tony Notarberardino"},
{category:"ADVERTISING",name:"OshKosh Fall",folder:"ADVERTISING/oshkosh/fall",
text:"OshKosh
Photographyer - Luca Zordan"},
{category:"ADVERTISING",name:"OshKosh Spring/Summer",folder:"ADVERTISING/oshkosh/ss",
text:"OshKosh
Photographyer - Luca Zordan"},
{category:"ADVERTISING",name:"Rachael Ray",folder:"ADVERTISING/rae",
text:"Rachael Ray
Photographer - Andrew Eccles"},
{category:"ADVERTISING",name:"60 Thompson Hotel",folder:"ADVERTISING/thom",
text:"Thom
Photographer - Len Prince"},
{category:"FINE ART",name:"Len Prince, Danziger Projects",folder:"FINEART/prince",
text:"\"Jessie Mann, Self Possessed\", Danziger Projects, Len Prince"},
{category:"FINE ART",name:"Philip Lorca di Corcia",folder:"FINEART/lucky-13",
text:"\"Lucky 13\", Pace Wildenstein, Philip Lorca Di Corcia"},
{category:"FINE ART",name:"Vanessa Beecroft VB54",folder:"FINEART/beecroft",
text:"\"Terminal 5\", Vanessa Beecroft, VB54"} /* Last Row - without comma */
/***********************************************
************************************************
********* END OF EDITABLE CONTENT **************
************************************************
***********************************************/
]
/***********************************************
************************************************
***************** NO TOUCH *********************
************************************************
***********************************************/
for(var i=0; i < __PORTFOLIO__.length; i++){
if(!__PORTFOLIO__.categories)__PORTFOLIO__.categories={}
if(!__PORTFOLIO__.byfolder)__PORTFOLIO__.byfolder={}
if(!__PORTFOLIO__.categories[__PORTFOLIO__[i].category])__PORTFOLIO__.categories[__PORTFOLIO__[i].category]={}
__PORTFOLIO__.categories[__PORTFOLIO__[i].category][__PORTFOLIO__[i].name]=__PORTFOLIO__.byfolder[__PORTFOLIO__[i].folder]=__PORTFOLIO__[i];
}