Module:SST/shards/C
| This module is rated as alpha. It is ready for limited use and third-party feedback. It may be used on a small number of pages, but should be monitored closely. Suggestions for new features or adjustments to input and output are welcome. |
| Editing of this module by new or unregistered users is currently disabled. See the protection policy and protection log for more details. If you cannot edit this module and you wish to make a change, you can submit an edit request, discuss changes on the talk page, request unprotection, log in, or create an account. |
- Note: This is part of the WP:SSTS system see that page for complete documentation
This page contains the data configurations for Module:SST ("Single-source templates") for all book keys starting with the letter "C".
Create a new shard entry
All book metadata is stored in "shards" which are Lua Modules that contain simple tables.
There are two types of shards:
- Single - A single book. They share shard files. For example, all single books that start with "A" are in Module:SST/shards/A
- Sets - Works that have multiple volumes or editions e.g. an Encyclopedia or a 3-edition book. Each one has their own private shard file stored in
Module:SST/shards/setsfor example Module:SST/shards/sets/THE_CAMBRIDGE_HISTORY_OF_IRAN.
To add a new book, navigate to the correct shard and add a new table. The template documentation page will show where the shard is located.
Naming the book key
When creating a new table, use a unique, recognizable book key in ALL CAPS, with spaces converted to underscores. For single shards it must start with the letter of the shard it is placed in. Generally a good idea to start with the author's last name then a short version of the title.
- Example:
library['IMBER_THE_OTTOMAN_EMPIRE'] = { ... }
When creating a multi-edition or volume set of books, name each book followed by a number for volumes e.g. _1 and _2 .. or by a year of publication e.g. _1990 and _2002 for editions.
- BOWEN_THE_LIFE_AND_TIMES_OF_AL_IBN_ISA
- IMBER_THE_OTTOMAN_EMPIRE_2002
- IMBER_THE_OTTOMAN_EMPIRE_2009
- BYZANTINE_SEALS_1
- BYZANTINE_SEALS_2
Host
The |host= sets which digital library the citation will link to.
Example: Host
|
|---|
library['IMBER_THE_OTTOMAN_EMPIRE'] = {
['host'] = "ia",
['cite_params'] = {
.....
}
|
Valid values for |host= are "ia", "guten", "hathi", "wikisrc", "gbook", "web" and "physical" (not online). These map to a corresponding |id= in the |hosts= entry (see below). Improper values or lack of a host will default to "physical" (no external links).
If a |host= is changed (e.g. from "hathi" to "ia") this will impact the Leaf page designations for every template on Wikipedia. For example Hathi uses 42@s54 while IA uses 42@n34. A change of |host= is disruptive, causing URLs to land on the wrong page. Tools will be in development to make |host= changes easier by automating the update of templates. Until then, it is better to consider the host "locked".
Citation Parameters
- A table of CS1 parameters displayed by default. (Users can override these within the invoking templates.)
|_template=: Optional. Defaults tocite book, can also be set tocite encyclopedia(more template support in future).|last=,|first=,|quote=,|ref=, etc. = Standard CS1 parameters.
Example: Citation Parameters
|
|---|
['host'] = "ia",
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Birtchnell",
['first'] = "Percy Charles",
['author-link'] = "Percy Birtchnell",
['title'] = "A Short History of Berkhamsted",
['year'] = "1972",
['edition'] = "Revised",
['publisher'] = "Privately printed",
['place'] = "Berkhamsted",
['oclc'] = "737328"
},
|
Hosts
- A nested table defining where the book can be found online and how the routing engines should handle it. Supported host keys are
|ia=(Internet Archive),|hathi=(HathiTrust),|guten=(Project Gutenberg),|wikisrc=(Wikisource),|gbook=(Google Books),|web=(Other website), and|physical=(No digital host). You can add multiple hosts for each book, which one is used is defined by|host=(see above).
- A nested table defining where the book can be found online and how the routing engines should handle it. Supported host keys are
|id== The host-specific identifier.- IA: The ID from the URL. Multiple IDs for the same edition can be defined see Example setup.
- Hathi: The handle ID
- GBook: The 12-character ID
- Wikisource: The full Page namespace name, including extension
- Web: For a web host, omit id. See Example setup.
- Physical: A physical copy only - for books without a digital host. See Example setup.
Example: Host Configurations
|
|---|
['hosts'] = {
['ia'] = {
['id'] = "encyclopaediabrit01chisrich",
}
}
['hosts'] = {
['ia'] = {
['id'] = {
"nebraskaplacenam00fitz",
"nebraskaplacenam0000fitz"
}
}
}
['hosts'] = {
['hathi'] = {
['id'] = "iau.31858015245842",
}
}
['hosts'] = {
['gbook'] = {
['id'] = "-CNkywAACAAJ",
}
}
['hosts'] = {
['wikisrc'] = {
['id'] = "Page:The Fun of It.pdf",
}
}
['hosts'] = {
['web'] = {
['url'] = "http://www.uscoldwar.com/overview.htm",
}
}
['hosts'] = {
['physical'] = {}
}
|
- Internet Archive Options:
- query = (Internet Archive only). Optional. Use instead of `id` for multi-volume works. Links the main title to an IA search page. Page linking will output as unlinked plain text. (ex. `query = 'title:"Encyclopaedia Britannica" AND date:1911'`)
- iadisplay = "full screen" (Internet Archive only). Optional. Opens the book in full-screen mode instead of the default 2-up view.
- iasearch = "none" or "pagenum" (Internet Archive only). Optional. Set to "none" to disable the dummy search for PD books.
Example: Internet Archive Options
|
|---|
['hosts'] = {
['ia'] = {
['query'] = "title:Britannica AND year:1911",
}
}
['hosts'] = {
['ia'] = {
['id'] = "encyclopaediabrit01chisrich",
['iasearch'] = "none",
['iadisplay'] = "full screen"
}
}
|
Multiple IDs
Some hosts have multiple copies of the same book+edition. This can be useful to mitigate viewing limits. Many hosts only allow X number of views per day per book. By including multiple IDs, you can spread the load across multiple IDs. Because the template randomly chooses real-time, it is important each book be identical ie. published in the same year, same publisher, each open to the same page 42 etc.. How to add multiple identical books:
['hosts'] = {
['ia'] = {
['id'] = {
"nebraskaplacenam00fitz",
"nebraskaplacenam0000fitz"
}
}
}
Load sharing is not available across hosts (inter-host), only within hosts (intra-host).
local library = {}
-- O City of Byzantium, Annals of Niketas Choniatēs by Wayne State University Press
-- Template:O City of Byzantium
library['CHONIATES_O_CITY_OF_BYZANTIUM'] = {
host = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Choniates",
['first'] = "Nicetas",
['author-link'] = "Niketas Choniates",
['translator'] = "Harry J. Magoulias",
['title'] = "O City of Byzantium, Annals of Niketas Choniatēs",
['location'] = "Detroit",
['publisher'] = "Wayne State University Press",
['year'] = "1984",
['isbn'] = "0-8143-1764-2",
},
['hosts'] = {
['ia'] = {
['id'] = "ocityofbyzantium0000chon",
},
['gbook'] = {
['id'] = "O8arrZPM8moC",
},
}
}
-- Oz Clarke's Australian Wine Companion: An essential guide for all lovers of Australian wine by [[Oz Clarke]]
-- Template:Clarke-AustWineCompan
library['CLARKE_OZ_CLARKES_AUSTRALIAN_WINE_COMPANION'] = {
['host'] = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Clarke",
['first'] = "Oz",
['author-link'] = "Oz Clarke",
['year'] = "2004",
['title'] = "Oz Clarke's Australian Wine Companion: An essential guide for all lovers of Australian wine",
['location'] = "London",
['publisher'] = "Websters/Time Warner Books UK",
['isbn'] = "0316728748",
},
['hosts'] = {
['ia'] = {
['id'] = {
"ozclarkesaustral0000clar",
"ozclarkesaustral0000ozcl",
},
}
}
}
-- Mercedes 190 & 300 SL 1954-63 by Brooklands Books
-- Template:Brooklands: Mercedes 190 & 300
library['CLARKE_MERCEDES_190_300'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1989",
['title'] = "Mercedes 190 & 300 SL 1954-63",
['series'] = "Road Test Portfolio Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "1870642260",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes AMG Gold Portfolio 1983-1999 by Brooklands Books
-- Template:Brooklands: Mercedes AMG Gold Portfolio 1983-1999
library['CLARKE_MERCEDES_AMG_GOLD_PORTFOLIO'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "2007",
['title'] = "Mercedes AMG Gold Portfolio 1983-1999",
['series'] = "Road Test Portfolio Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "978-1-85520-745-5",
},
['hosts'] = {
['physical'] = {}
}
}
-- The Classic Car Adventure: Driving Through History on the Road to Nostalgia by Lance Cole
-- Template:Cole: The Classic Car Adventure
library['COLE_THE_CLASSIC_CAR_ADVENTURE'] = {
['host'] = 'gbook', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Cole",
['first'] = "Lance",
['year'] = "2017",
['title'] = "The Classic Car Adventure: Driving Through History on the Road to Nostalgia",
['location'] = "Barnsley, England",
['publisher'] = "[[Pen & Sword]]",
['isbn'] = "9781473896413",
},
['hosts'] = {
['gbook'] = {
['id'] = "Mr2XAQAACAAJ",
}
}
}
-- Mercedes 230SL - 250SL - 280SL Ultimate Portfolio 1963-1971 by Brooklands Books
-- Template:Brooklands: Mercedes 230SL
library['CLARKE_MERCEDES_230SL_250SL_280SL_ULTIMATE_PORTFOLIO'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "2010",
['title'] = "Mercedes 230SL - 250SL - 280SL Ultimate Portfolio 1963-1971",
['series'] = "Road Test Portfolio Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "978-1-85520-886-5",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes SLs & SLCs Gold Portfolio 1971-1989 by Brooklands Books
-- Template:Brooklands: Mercedes SLs & SLCs Gold Portfolio 1971-1989
library['CLARKE_MERCEDES_SLS_SLCS_GOLD_PORTFOLIO_1971_1989'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1990",
['title'] = "Mercedes SLs & SLCs Gold Portfolio 1971-1989",
['series'] = "Road Test Portfolio Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "1-85520-010-4",
},
['hosts'] = {
['physical'] = {}
}
}
-- Porsche 924, 944 & 968: A Collector's Guide by Michael Cotton
-- Template:Cotton: Porsche 924, 944 & 968
library['COTTON_PORSCHE_924_944_968'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Cotton",
['first'] = "Michael",
['year'] = "2000",
['title'] = "Porsche 924, 944 & 968: A Collector's Guide",
['location'] = "Croydon, UK",
['publisher'] = "Motor Racing Publications",
['isbn'] = "1899870474",
['edition'] = "rev. and expanded",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes-Benz SL SLK CLK Portfolio 1990-2003 by Brooklands Books
-- Template:Brooklands: Mercedes-Benz SL SLK CLK Portfolio 1990-2003
library['CLARKE_MERCEDES_BENZ_SL_SLK_CLK_PORTFOLIO_1990_2003'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "2004",
['title'] = "Mercedes-Benz SL SLK CLK Portfolio 1990-2003",
['series'] = "[[Road & Track]] Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "1-85520-653-6",
},
['hosts'] = {
['physical'] = {}
}
}
-- On Mercedes 1963-1970 by Brooklands Books
-- Template:Brooklands: On Mercedes 1963-1970
library['CLARKE_ON_MERCEDES_1963_1970'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1987",
['title'] = "On Mercedes 1963-1970",
['series'] = "[[Road & Track|Road & Track Series]]",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "1-869826-41-8",
['ref'] = "{{SfnRef|On Mercedes (1963-1970)|1987}}",
},
['hosts'] = {
['physical'] = {}
}
}
-- On Mercedes 1980-1987 by Brooklands Books
-- Template:Brooklands: On Mercedes 1980-1987
library['CLARKE_ON_MERCEDES_1980_1987'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1987",
['title'] = "On Mercedes 1980-1987",
['series'] = "[[Road & Track|Road & Track Series]]",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "1869826434",
['ref'] = "{{SfnRef|On Mercedes (1980-1987)|1987}}",
},
['hosts'] = {
['physical'] = {}
}
}
-- Porsche 928, 924, 944 and 968: The Front-Engined Sports Cars by Marc Cranswick
-- Template:Cranswick: Porsche 928, 924, 944 and 968
library['CRANSWICK_PORSCHE_928_924_944_AND_968'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Cranswick",
['first'] = "Marc",
['year'] = "2008",
['title'] = "Porsche 928, 924, 944 and 968: The Front-Engined Sports Cars",
['location'] = "Jefferson, NC, USA",
['publisher'] = "McFarland & Company",
['isbn'] = "978-0-7864-3040-6",
},
['hosts'] = {
['physical'] = {}
}
}
-- On Audi & Auto Union 1952-1980 by Brooklands Books
-- Template:Brooklands: On Audi & Auto Union 1952-1980
library['CLARKE_ON_AUDI_AUTO_UNION_1952_1980'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1986",
['title'] = "On Audi & Auto Union 1952-1980",
['series'] = "[[Road & Track|Road & Track Series]]",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "0948207876",
['ref'] = "{{SfnRef|On Audi & Auto Union (1952-1980)|1986}}",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes-Benz 190SL 300SL 300SLR A Brooklands Portfolio by Brooklands Books
-- Template:Brooklands: Mercedes-Benz 190SL 300SL 300SLR
library['CLARKE_MERCEDES_BENZ_190SL_300SL_300SLR'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "2011",
['title'] = "Mercedes-Benz 190SL 300SL 300SLR A Brooklands Portfolio",
['series'] = "Road Test Portfolio Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "978-1-85520-932-9",
},
['hosts'] = {
['physical'] = {}
}
}
-- SUV: The World's Greatest Sport Utility Vehicles by Giles Chapman
-- Template:Chapman: SUV
library['CHAPMAN_SUV_THE_WORLD_S_GREATEST_SPORT_UTILITY_VEHICLES'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Chapman",
['first'] = "Giles",
['year'] = "2005",
['title'] = "SUV: The World's Greatest Sport Utility Vehicles",
['location'] = "London",
['publisher'] = "Merrell Publishers",
['isbn'] = "1858942748",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes SLs Performance Portfolio 1989-1994 by Brooklands Books
-- Template:Brooklands: Mercedes SLs Performance Portfolio 1989-1994
library['CLARKE_MERCEDES_SLS_PERFORMANCE_PORTFOLIO_1989_1994'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1996",
['title'] = "Mercedes SLs Performance Portfolio 1989-1994",
['series'] = "Road Test Portfolio Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "1-85520-268-9",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes AMG Ultimate Portfolio 2000-2006 by Brooklands Books
-- Template:Brooklands: Mercedes AMG Ultimate Portfolio 2000
library['CLARKE_MERCEDES_AMG_ULTIMATE_PORTFOLIO_2000_2006'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "2007",
['title'] = "Mercedes AMG Ultimate Portfolio 2000-2006",
['series'] = "Road Test Portfolio Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "978-1-85520-748-6",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes-Benz: 1968-73 All 220, 230, 250, 280, 300, 350 and 450 models, gasoline and diesel engines by Chilton Automotive Editorial Staff
-- Template:Chilton: Mercedes-Benz: 1968-73
library['CHILTON_MERCEDES_BENZ_1968_1973'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Staff",
['first'] = "Chilton Automotive Editorial",
['year'] = "1974",
['title'] = "Mercedes-Benz: 1968-73 All 220, 230, 250, 280, 300, 350 and 450 models, gasoline and diesel engines",
['series'] = "Chilton's Repair & Tune-Up Guide Series",
['location'] = "Radnor, PA, USA",
['publisher'] = "Chilton Book Co",
['isbn'] = "0-8019-5907-1",
['ref'] = "{{SfnRef|Chilton|1974}}",
},
['hosts'] = {
['physical'] = {}
}
}
-- On Mercedes 1952-1962 by Brooklands Books
-- Template:Brooklands: On Mercedes 1952-1962
library['CLARKE_ON_MERCEDES_1952_1962'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1987",
['title'] = "On Mercedes 1952-1962",
['series'] = "[[Road & Track]] Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "1-869826-40-X",
['ref'] = "{{SfnRef|On Mercedes (1952-1962)|1987}}",
},
['hosts'] = {
['physical'] = {}
}
}
-- On Mercedes Sports & GT Cars 1970-1980 by Brooklands Books
-- Template:Brooklands: On Mercedes Sports & GT Cars 1970-1980
library['CLARKE_ON_MERCEDES_SPORTS_GT_CARS_1970_1980'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1980",
['title'] = "On Mercedes Sports & GT Cars 1970-1980",
['series'] = "[[Road & Track|Road & Track Series]]",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "0907073395",
['ref'] = "{{SfnRef|On Mercedes Sports & GT Cars (1970-1980)|1980}}",
},
['hosts'] = {
['physical'] = {}
}
}
-- On Mercedes 1971-1979 by Brooklands Books
-- Template:Brooklands: On Mercedes 1971-1979
library['CLARKE_ON_MERCEDES_1971_1979'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1987",
['title'] = "On Mercedes 1971-1979",
['series'] = "[[Road & Track]] Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "1-869826-42-6",
['ref'] = "{{SfnRef|On Mercedes (1971-1979)|1987}}",
},
['hosts'] = {
['physical'] = {}
}
}
-- On Audi & Auto Union 1980-1986 by Brooklands Books
-- Template:Brooklands: On Audi & Auto Union 1980
library['CLARKE_ON_AUDI_AUTO_UNION_1980_1986'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['editor-last'] = "Clarke",
['editor-first'] = "R.M.",
['year'] = "1986",
['title'] = "On Audi & Auto Union 1980-1986",
['series'] = "[[Road & Track]] Series",
['location'] = "Cobham, Surrey, UK",
['publisher'] = "Brooklands Books",
['isbn'] = "0948207884",
['ref'] = "{{SfnRef|On Audi & Auto Union (1980-1986)|1986}}",
},
['hosts'] = {
['physical'] = {}
}
}
-- The Power Broker: Robert Moses and the Fall of New York by [[Robert Caro]]
-- Template:Caro: The Power Broker
library['CARO_THE_POWER_BROKER'] = {
['host'] = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Caro",
['first'] = "Robert",
['author-link'] = "Robert Caro",
['title'] = "The Power Broker: Robert Moses and the Fall of New York",
['title-link'] = "The Power Broker",
['publisher'] = "Knopf",
['location'] = "New York",
['year'] = "1974",
['isbn'] = "978-0-394-48076-3",
},
['hosts'] = {
['ia'] = {
['id'] = {
"powerbrokerrober0000caro",
"powerbrokerrober1975caro",
"powerbrokerrober00caro_0",
"powerbrokerrober00caro",
}
}
}
}
-- 66 petites histoires du Pays Catalan by Fabricio Cárdenas
-- Template:Cárdenas: 66 petites histoires du Pays Catalan
library['CARDENAS_66_PETITES_HISTOIRES_DU_PAYS_CATALAN'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Cárdenas",
['first'] = "Fabricio",
['year'] = "2014",
['title'] = "66 petites histoires du Pays Catalan",
['trans-title'] = "66 Little Stories of Catalan Country",
['language'] = "fr",
['location'] = "Perpignan",
['publisher'] = "Ultima Necat",
['isbn'] = "978-2-36771-006-8",
},
['hosts'] = {
['physical'] = {}
}
}
return library