Fixed date parsing bug in index.js introduced since last commit.

Removed debugging console.log() call in browsing-engine.js.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@200 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-03-04 19:38:23 +00:00
parent 1dc3d4abbd
commit 3e0ac50e17
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ import org.json.JSONObject;
import org.json.JSONTokener;
public class ParsingUtilities {
static public SimpleDateFormat s_sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
static public SimpleDateFormat s_sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
static public String inputStreamToString(InputStream is) throws IOException {
Reader reader = new InputStreamReader(is, "UTF-8");

View File

@ -33,7 +33,7 @@ function renderProjects(data) {
if (data.projects.hasOwnProperty(n)) {
var project = data.projects[n];
project.id = n;
project.date = new Date(project.modified);
project.date = Date.parseExact(project.modified, "yyyy-MM-ddTHH:mm:ssZ");
projects.push(project);
}
}

View File

@ -110,7 +110,7 @@ BrowsingEngine.prototype.removeFacet = function(facet) {
for (var i = this._facets.length - 1;i >= 0; i--) {
if (this._facets[i].facet === facet) {
this._facets[i].elmt.remove();
this._facets.splice(i, 1);console.log("removed");
this._facets.splice(i, 1);
break;
}
}