Workflows & Enumerations ======================== Blog workflow ------------------------ This is the blog workflow. It tracks the deployment and uptime status of a blog. .. image:: ../docs/workflows/workflow_blog.png :width: 53em Blog Indexation workflow ------------------------ We track the indexation status of every blog in a separate workflow. This diagram shows the possible states and transitions between them. .. image:: ../docs/workflows/workflow_blog_indexation.png :width: 33em .. _wp-plugins: Available WP Plugins -------------------- .. exec:: import json from ebn.const import WordPressPlugins del WordPressPlugins[0] # random theme print '=============================================== ===============================' print 'name title' print '=============================================== ===============================' for plugin in WordPressPlugins: print '{}{}\t{}'.format( plugin.name, (47 - len(plugin.name)) * ' ', plugin.title) print '=============================================== ===============================' .. _wp-themes: Available WP Themes ------------------- .. exec:: import json from ebn.const import WordPressThemes print '=============== ===================================================' print 'name title' print '=============== ===================================================' for theme in WordPressThemes: print '{}{}\t{}'.format( theme.name, (15 - len(theme.name)) * ' ', theme.title) print '=============== ==================================================='