int makeall_sources()
{
int num_sources;
num_sources = 0;
num_sources = build_source(num_sources, "[BROCHURE]",
"Volvo official brochure.");
num_sources = build_source(num_sources, "[BRYANT]",
"Email from Tom Bryant, 2004.12.15.");
num_sources = build_source(num_sources, "[CLARKE70]",
"R.M. Clarke, Volvo 120 Series, 1956-1970, Brookland Books, England, "
"circa 1970, ISBN 0 907073 16 6.");
num_sources = build_source(num_sources, "[CAVERS]",
"Email from Glen Cavers, 2004.02.15");
num_sources = build_source(num_sources, "[CARGUIDE]",
"CAR GUIDE, published yearly giving brief model description and price "
"of Canadian models.");
num_sources = build_source(num_sources, "[GRIMSHAW1]",
""
"http://www3.telus.net/Volvo_Books/specart11.html and "
""
"http://www3.telus.net/Volvo_Books/specart5.html. "
"Articles by Paul Grimshaw on Volvo Engines.");
num_sources = build_source(num_sources, "[GRIMSHAW96]",
"Paul Grimshaw, The Gothenburg Bible, A Guide to Long-Term, "
"Cost-Efficient & Worry-Free Volvo Ownership, "
" ZOD Publishing, 2nd edition 1996. Order information at "
""
"http://www3.telus.net/Volvo_Books/home.html.");
num_sources = build_source(num_sources, "[GRIMSHAW99]",
"Paul Grimshaw, The Volvo Performance Handbook, "
" ZOD Publishing, 2nd edition 1999. Order information at "
""
"http://www3.telus.net/Volvo_Books/home.html.");
num_sources = build_source(num_sources, "[HARNESS]",
"Wiring harnesses for 1983 to 1987 (and possibly early 1988) Volvo cars "
"tend to crack and deteriorate prematurely, more so with the turbo because "
"of the added heat. See "
"Common Problems for more information.");
num_sources = build_source(num_sources, "[LINDH]",
"Bjorn-Eric Lindh, VOLVO, The Cars - From the 20s to the 80s, ISBN 91-86442-08-2,"
" Forlagshuset Norden AB, 1984. A revision for the 90s is available.");
num_sources = build_source(num_sources, "[MICHAEL1]",
"Email posted on "
"The BrickBoard by Michael ?, 2002.02.04.");
num_sources = build_source(num_sources, "[UKCLUB1]",
""
"www.volvoclub.org.uk/turn_circles.htm, "
"UK Volvo club page on turning circles. Data extracted 2002.05.07.");
num_sources = build_source(num_sources, "[URBANCIC]",
""
"http://www2.mf.uni-lj.si/~jurbancic/engines.htm. "
"This web site by J. Urbancic contains lots of good info on Volvo engines. "
"Data extracted 2002.02.20.");
num_sources = build_source(num_sources, "[USWEB1]",
""
"http://new.volvocars.com. "
"Useful set of model pages on the official US Volvo site. You have to "
"log on as a US resident to the Owner's Library. "
"Data extracted 2002.05.05.");
num_sources = build_source(num_sources, "[USWEB2]",
""
"http://new.volvocars.com. "
"Useful set of model pages on the official US Volvo site. You have to "
"log on as a US resident to the Owner's Library. "
"Data extracted 2006.11.06 (Thanks to Al Sichelstiel for the reference.)");
num_sources = build_source(num_sources, "[VOLVOWORLD]",
"www.volvoworld.com, "
"parts supplier. This web site contains lots of good info on parts, "
"production figures, engine designations and specs, colour codes, and "
"VIN numbers. Data extracted 2002.01.12.");
num_sources = build_source(num_sources, "[WHEELS]",
"World of Wheels, published yearly giving brief model description and price "
"of Canadian models. "
"Web site: www.wheels.ca.");
return num_sources;
}