oops looks like rev 598 jumbled some code in identity.js

This commit is contained in:
alta88 2009-02-23 12:04:58 -07:00
Родитель 02a82e084b
Коммит dba7a2f1a9
1 изменённых файлов: 0 добавлений и 21 удалений

Просмотреть файл

@ -91,10 +91,6 @@ SnowlIdentity.create = function(sourceID, externalID, name, homeURL, iconURL) {
"INSERT INTO identities (sourceID, externalID, personID) " +
"VALUES (:sourceID, :externalID, :personID)"
);
// let identityStatement = SnowlDatastore.createStatement(
// "INSERT INTO identities (sourceID, externalID, personID, placesID) " +
// "VALUES (:sourceID, :externalID, :personID, :placesID)"
// );
try {
personStatement.params.name = name;
@ -124,26 +120,9 @@ SnowlIdentity.create = function(sourceID, externalID, name, homeURL, iconURL) {
"SET placeID = " + placeID +
" WHERE id = " + personID);
// XXX lookup favicon in collections table rather than hardcoding
let iconURI =
iconURL ? URI.get(iconURL) :
homeURL ? SnowlSource.faviconSvc.getFaviconForPage(homeURL) :
URI.get("chrome://snowl/skin/person-16.png");
// Create places record, placesID stored into people table record.
//SnowlPlaces._log.info("Author name:iconURI.spec - " + name + " : " + iconURI.spec);
let placesID = SnowlPlaces.persistPlace("identities",
personID,
name,
null, // homeURL,
null, // externalID,
iconURI,
sourceID);
identityStatement.params.sourceID = sourceID;
identityStatement.params.externalID = externalID;
identityStatement.params.personID = personID;
// identityStatement.params.placesID = placesID;
identityStatement.step();
let identityID = SnowlDatastore.dbConnection.lastInsertRowID;