Title |
To the gates of Stalingrad : Soviet-German combat operations, April-August 1942 / David M. Glantz ; with Jonathan M. House. |
|
Publication Info. |
Lawrence, Kan. : University Press of Kansas, c2009. |
|
Description |
xix, 655 p. : ill., maps, plans ; 24 cm. |
Series |
Modern war studies
|
|
The Stalingrad trilogy ; v. 1.
|
Bibliography |
Includes bibliographical references (p. 595-608) and index. |
Contents |
Prologue: Along the Sukhaia Vereika River, 23 July 1942 -- The Wehrmacht -- The Red Army -- Preliminaries, April-June 1942 -- Punch and counterpunch, Blau I, 28 June-12 July 1942 -- Blau II, 9-24 July 1942 -- The German advance into the Great Bend of theDon, 23-31 July 1942 -- Endgame in the Great Bend of the Don, 1-19 August 1942 -- The German advance to the Volga River, 20 August-2 September 1942 -- The struggle on the flanks, 25 July-11 September 1942 -- Conclusions: German strategic misconceptions. |
Subject |
Soviet Union. Raboche-Krestʹianskaia Krasnaia Armiia -- History -- World War, 1939-1945.
|
|
Germany. Heer -- History -- World War, 1939-1945.
|
|
Stalingrad, Battle of, Volgograd, Russia, 1942-1943.
|
Added Author |
House, Jonathan M. (Jonathan Mallory), 1950-
|
ISBN |
0700616306 : $39.95 |
|
9780700616305 |
|
ISBN |
0700616306 : $39.95 |
|
9780700616305 |
|
');
var
reviewBodies = data.tm_field_staff_picks_review_short || [],
firstName = data['tm_user$field_profile_first_name'],
lastName = data['tm_user$field_profile_last_name'],
displayName = data['ss_user$profile_staff_picks$field_staff_picks_display_name'] || '',
location = data['ss_user$field_emp_location$name'] || null;
if (!reviewBodies[0])
return null;
var actualName = [firstName, lastName].join(' ');
var reviewContent = [
$('
').append([
'"',
reviewBodies[0],
'"',
$('').append([
' —',
(displayName || actualName),
location !== null ? ', ' + location : ''
].join(''))
])
];
review.html(reviewContent);
return review;
}
var staffPicksContent = $('#staff-picks-content');
var permLinkElem = $('#ICON_RECORDLINK a');
if (!permLinkElem.length)
return;
var permLink = permLinkElem.attr('href') || null;
if (permLink === null)
return;
var bibRegexp = new RegExp('b[0-9]{7,10}');
var recordNumMatch = bibRegexp.exec(permLink);
if (recordNumMatch === null)
return;
$.ajax({
url: 'https://intranet.ocls.info/staff-picks/query',
method: 'GET',
data: {
bib_url: recordNumMatch[0]
},
dataType: 'json'
})
.then(function (response) {
response = response || {};
var
solrResponse = response.response || {},
numFound = solrResponse.numFound || 0,
docs = solrResponse.docs || [];
console.log(solrResponse);
if (numFound == 0 || !docs.length)
return;
var reviews = docs.map($staffPick).filter(function (row) {
return row !== null;
});
if (!reviews.length)
return;
// build and place content from data
staffPicksContent.append([
$('').text('Reviews from Staff (Staff Picks)'),
].concat(reviews));
})
.catch(function (e) {
console.error(e);
});
})(window.jQuery);