davetcc / hugojoomla

Converts Joomla database content into Hugo md files
Apache License 2.0
10 stars 7 forks source link

Convert only content that marked as published, not deleted or trashed. #4

Closed davetcc closed 8 years ago

davetcc commented 8 years ago

Currently the converter will convert content regardless of publication status. It should only convert published content.

davetcc commented 8 years ago

Taken from stack overflow: http://stackoverflow.com/questions/11887160/how-to-detect-unpublished-content-in-joomla-db state field values: 0 = unpublished 1 = published -1 = archived -2 = marked for deletion

davetcc commented 8 years ago

Only content with state 0 or 1 is now converted, others are not converted.