Subversion Repositories SmartDukaan

Rev

Rev 974 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 974 Rev 989
Line 349... Line 349...
349
		return htmlString;
349
		return htmlString;
350
	}
350
	}
351
	
351
	
352
	public String getPageTitleHtml(long productId) {
352
	public String getPageTitleHtml(long productId) {
353
		StringBuilder htmlString = new StringBuilder();
353
		StringBuilder htmlString = new StringBuilder();
354
		String filename = Utils.EXPORT_ENTITIES_PATH + productId + File.separator + "CategoryTitleSnippet.html";
354
		String filename = Utils.EXPORT_ENTITIES_PATH + productId + File.separator + "TitleSnippet.html";
355
		File f = new File(filename);
355
		File f = new File(filename);
356
		
356
		
357
		
357
		
358
		FileInputStream fis = null;
358
		FileInputStream fis = null;
359
		try {
359
		try {
Line 384... Line 384...
384
		return htmlString.toString();
384
		return htmlString.toString();
385
	}
385
	}
386
	
386
	
387
	public String getPageMetaDescriptionHtml(long productId) {
387
	public String getPageMetaDescriptionHtml(long productId) {
388
		StringBuilder htmlString = new StringBuilder();
388
		StringBuilder htmlString = new StringBuilder();
389
		String filename = Utils.EXPORT_ENTITIES_PATH + productId + File.separator + "CategoryMetaDescriptionSnippet.html";
389
		String filename = Utils.EXPORT_ENTITIES_PATH + productId + File.separator + "MetaDescriptionSnippet.html";
390
		File f = new File(filename);
390
		File f = new File(filename);
391
		
391
		
392
		
392
		
393
		FileInputStream fis = null;
393
		FileInputStream fis = null;
394
		try {
394
		try {
Line 419... Line 419...
419
		return htmlString.toString();
419
		return htmlString.toString();
420
	}
420
	}
421
	
421
	
422
	public String getPageMetaKeywordsHtml(long productId) {
422
	public String getPageMetaKeywordsHtml(long productId) {
423
		StringBuilder htmlString = new StringBuilder();
423
		StringBuilder htmlString = new StringBuilder();
424
		String filename = Utils.EXPORT_ENTITIES_PATH + productId + File.separator + "CategoryMetaKeywordsSnippet.html";
424
		String filename = Utils.EXPORT_ENTITIES_PATH + productId + File.separator + "MetaKeywordsSnippet.html";
425
		File f = new File(filename);
425
		File f = new File(filename);
426
		
426
		
427
		
427
		
428
		FileInputStream fis = null;
428
		FileInputStream fis = null;
429
		try {
429
		try {