I have a private blog posting + digital product publishing system and I 
would like to migrate its content into mezzanine.

Do you guys have some advice on what direction I should take. I am the 
author of this private system and I am not afraid of writing Python code. I 
just need some solid pointers on what is the appropriate way to import data 
into Mezzanine system.

My blogging system is based on preserving original markdown content. I have 
tags and images associated with posts. 

Here is the core of my article schema (SQLite). There is nothing special in 
there:

CREATE VIRTUAL TABLE 'article' using fts4 (
articleId integer primary key,
content,
tags, 
tokenize=porter);
CREATE TABLE articleInfo (
articleId integer primary key,
-- relative path is a part of url path excluding /articles/ prefix
path varchar(255) unique not null,
categoryId integer not null,
title varchar(255) unique not null,
authorId integer not null,
created datetime not null,
updated datetime null,
published datetime null
, intro varchar(500) not null default '', iconUrl varchar(255) not null 
default '');

Use of fs4 storage together with markdown provided me a great text search 
capability.

I don't plan to migrate user ids as most of my system was for private use 
and it is me and my wife who use it.

Is there any support for product sales in Mezzanine? My schema in product 
sales is quite unique to digital product sales, so I am not sure how much 
reuse I can get from Mezzanine.


Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to