[Groonga-commit] nroonga/norema [master] Partially reverts 58c78f

Back to archive index

Yoji SHIDARA null+****@clear*****
Wed Aug 15 17:46:38 JST 2012


Yoji SHIDARA	2012-08-15 17:46:38 +0900 (Wed, 15 Aug 2012)

  New Revision: c2dcbaa88e1a438ea6814d80692a4ffd4363cf29
  https://github.com/nroonga/norema/commit/c2dcbaa88e1a438ea6814d80692a4ffd4363cf29

  Log:
    Partially reverts 58c78f
    
    The change of convers.js on the commit was about debug printing.

  Modified files:
    tools/convert.js

  Modified: tools/convert.js (+1 -11)
===================================================================
--- tools/convert.js    2012-08-15 17:42:26 +0900 (da7f286)
+++ tools/convert.js    2012-08-15 17:46:38 +0900 (0c2256a)
@@ -24,13 +24,6 @@ function htmlToText(html, callback) {
   });
 }
 
-function titleToId(title) {
-  return title
-    .toLowerCase()
-    .replace(/[^a-z0-9]+/g, '_')
-    .replace(/^_|_$/g, '');
-}
-
 function parse(doc, context) {
   var item = {};
 
@@ -46,8 +39,6 @@ function parse(doc, context) {
   if (doc.desc) {
     item.desc = doc.desc;
     item.title = context.title;
-    item.id = titleToId(context.title);
-    console.log([item.id, item.title]);
     item.path = context.path.map(function(item) {
       return item.title;
     }).filter(function(title) {
@@ -58,7 +49,6 @@ function parse(doc, context) {
 
   context.path.push(item);
   for (var type in doc) {
-    console.log("TYPE", type);
     if (doc[type] instanceof Array) {
       doc[type].forEach(function(subdoc) {
         parse(subdoc, context);
@@ -74,7 +64,7 @@ function toSdf(records) {
   var version = (new Date()).getTime();
 
   return records.map(function(record, index) {
-    //console.log(index, record.path, record.title);
+    console.log(index, record.path, record.title);
     return {
       type: 'add',
       id: 'doc_' + index,
-------------- next part --------------
HTML����������������������������...
Descargar 



More information about the Groonga-commit mailing list
Back to archive index