Subversion Repositories SmartDukaan

Rev

Rev 4994 | Rev 5043 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4994 Rev 5004
Line 425... Line 425...
425
        // Generate synonyms list. This will be used in PriceComparisonTool to
425
        // Generate synonyms list. This will be used in PriceComparisonTool to
426
        // resolve the product names.
426
        // resolve the product names.
427
        log.info("Generating synonyms");
427
        log.info("Generating synonyms");
428
        SynonymExporter sx = new SynonymExporter(validEntities);
428
        SynonymExporter sx = new SynonymExporter(validEntities);
429
        sx.storeSynonyms();
429
        sx.storeSynonyms();
-
 
430
        
-
 
431
        // Generate HTML for Site Index
-
 
432
        log.info("Generating HTML for Site Index");
-
 
433
        ProductIndexGenerator indexGenerator = new ProductIndexGenerator(validEntities);
-
 
434
        indexGenerator.generate();
430
 
435
        
431
        if (newLastGenerationTime != 0) {
436
        if (newLastGenerationTime != 0) {
432
            CreationUtils.storeLastContentGenerationTime(newLastGenerationTime);
437
            CreationUtils.storeLastContentGenerationTime(newLastGenerationTime);
433
        }
438
        }
434
 
439
 
435
 
440