webgen 0.5.17 → 1.0.0.beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/API.rdoc +143 -0
- data/AUTHORS +0 -1
- data/COPYING +17 -8
- data/ChangeLog +4456 -0
- data/GPL +623 -289
- data/README.md +71 -0
- data/Rakefile +87 -99
- data/VERSION +1 -1
- data/bin/webgen +1 -7
- data/data/webgen/basic_website_template/ext/init.rb +15 -0
- data/data/webgen/basic_website_template/webgen.config +18 -0
- data/data/webgen/bundle_template_files/README.md.erb +24 -0
- data/data/webgen/bundle_template_files/Rakefile.erb +36 -0
- data/data/webgen/bundle_template_files/info.yaml.erb +16 -0
- data/data/webgen/bundle_template_files/init.rb.erb +1 -0
- data/data/webgen/passive_sources/default.metainfo +32 -0
- data/data/webgen/passive_sources/stylesheets/coderay-default.css +109 -118
- data/data/webgen/passive_sources/templates/feed.template +62 -0
- data/data/webgen/passive_sources/templates/sitemap.template +3 -6
- data/data/webgen/passive_sources/templates/tag.template +42 -0
- data/data/webgen/website_bundles/default/README +2 -2
- data/lib/webgen/blackboard.rb +15 -51
- data/lib/webgen/bundle/built-in-show-changes/init.rb +54 -0
- data/lib/webgen/bundle/built-in/init.rb +366 -0
- data/lib/webgen/bundle_loader.rb +126 -0
- data/lib/webgen/cache.rb +9 -18
- data/lib/webgen/cli.rb +131 -58
- data/lib/webgen/cli/bundle_command.rb +30 -0
- data/lib/webgen/cli/create_bundle_command.rb +46 -0
- data/lib/webgen/cli/create_command.rb +48 -60
- data/lib/webgen/cli/generate_command.rb +25 -0
- data/lib/webgen/cli/install_bundle_command.rb +34 -0
- data/lib/webgen/cli/list_bundle_command.rb +108 -0
- data/lib/webgen/cli/logger.rb +45 -0
- data/lib/webgen/cli/show_command.rb +30 -0
- data/lib/webgen/cli/show_config_command.rb +63 -0
- data/lib/webgen/cli/show_dependencies_command.rb +103 -0
- data/lib/webgen/cli/show_extensions_command.rb +74 -0
- data/lib/webgen/cli/utils.rb +68 -95
- data/lib/webgen/configuration.rb +143 -105
- data/lib/webgen/content_processor.rb +160 -0
- data/lib/webgen/content_processor/blocks.rb +96 -0
- data/lib/webgen/content_processor/builder.rb +25 -0
- data/lib/webgen/content_processor/erb.rb +25 -0
- data/lib/webgen/content_processor/erubis.rb +31 -0
- data/lib/webgen/content_processor/fragments.rb +82 -0
- data/lib/webgen/content_processor/haml.rb +25 -0
- data/lib/webgen/content_processor/html_head.rb +157 -0
- data/lib/webgen/content_processor/kramdown.rb +49 -0
- data/lib/webgen/content_processor/maruku.rb +39 -0
- data/lib/webgen/content_processor/r_discount.rb +21 -0
- data/lib/webgen/content_processor/rdoc.rb +22 -0
- data/lib/webgen/content_processor/redcloth.rb +23 -0
- data/lib/webgen/content_processor/ruby.rb +20 -0
- data/lib/webgen/content_processor/sass.rb +145 -0
- data/lib/webgen/content_processor/scss.rb +23 -0
- data/lib/webgen/content_processor/tags.rb +30 -0
- data/lib/webgen/content_processor/tidy.rb +32 -0
- data/lib/webgen/content_processor/tikz.rb +116 -0
- data/lib/webgen/content_processor/xmllint.rb +31 -0
- data/lib/webgen/context.rb +57 -29
- data/lib/webgen/context/html_head.rb +60 -0
- data/lib/webgen/context/nodes.rb +32 -27
- data/lib/webgen/context/rendering.rb +39 -0
- data/lib/webgen/context/webgen_tags.rb +25 -0
- data/lib/webgen/core_ext.rb +25 -0
- data/lib/webgen/destination.rb +151 -0
- data/lib/webgen/destination/file_system.rb +62 -0
- data/lib/webgen/error.rb +59 -49
- data/lib/webgen/extension_manager.rb +121 -0
- data/lib/webgen/item_tracker.rb +237 -0
- data/lib/webgen/item_tracker/file.rb +39 -0
- data/lib/webgen/item_tracker/missing_node.rb +61 -0
- data/lib/webgen/item_tracker/node_content.rb +40 -0
- data/lib/webgen/item_tracker/node_meta_info.rb +53 -0
- data/lib/webgen/item_tracker/nodes.rb +92 -0
- data/lib/webgen/logger.rb +26 -82
- data/lib/webgen/node.rb +122 -367
- data/lib/webgen/node_finder.rb +336 -0
- data/lib/webgen/page.rb +48 -85
- data/lib/webgen/path.rb +218 -156
- data/lib/webgen/path_handler.rb +400 -0
- data/lib/webgen/path_handler/base.rb +220 -0
- data/lib/webgen/path_handler/copy.rb +78 -0
- data/lib/webgen/path_handler/directory.rb +21 -0
- data/lib/webgen/path_handler/feed.rb +82 -0
- data/lib/webgen/path_handler/meta_info.rb +84 -0
- data/lib/webgen/path_handler/page.rb +38 -0
- data/lib/webgen/path_handler/page_utils.rb +79 -0
- data/lib/webgen/path_handler/sitemap.rb +52 -0
- data/lib/webgen/path_handler/template.rb +96 -0
- data/lib/webgen/path_handler/virtual.rb +85 -0
- data/lib/webgen/{webgentask.rb → rake_task.rb} +31 -27
- data/lib/webgen/source.rb +106 -24
- data/lib/webgen/source/file_system.rb +41 -0
- data/lib/webgen/source/stacked.rb +49 -53
- data/lib/webgen/source/tar_archive.rb +59 -0
- data/lib/webgen/tag.rb +250 -19
- data/lib/webgen/tag/breadcrumb_trail.rb +65 -0
- data/lib/webgen/tag/coderay.rb +32 -35
- data/lib/webgen/tag/date.rb +9 -9
- data/lib/webgen/tag/execute_command.rb +31 -0
- data/lib/webgen/tag/include_file.rb +32 -0
- data/lib/webgen/tag/langbar.rb +31 -47
- data/lib/webgen/tag/link.rb +17 -18
- data/lib/webgen/tag/menu.rb +27 -189
- data/lib/webgen/tag/meta_info.rb +31 -0
- data/lib/webgen/tag/relocatable.rb +48 -39
- data/lib/webgen/tag/tikz.rb +24 -100
- data/lib/webgen/task.rb +99 -0
- data/lib/webgen/task/create_bundle.rb +73 -0
- data/lib/webgen/task/create_website.rb +94 -0
- data/lib/webgen/task/generate_website.rb +47 -0
- data/lib/webgen/test_helper.rb +183 -0
- data/lib/webgen/tree.rb +95 -46
- data/lib/webgen/utils.rb +39 -0
- data/lib/webgen/utils/external_command.rb +27 -0
- data/lib/webgen/utils/tag_parser.rb +124 -0
- data/lib/webgen/version.rb +1 -1
- data/lib/webgen/website.rb +134 -296
- data/setup.rb +1 -1
- data/test/test_documentation.rb +43 -0
- data/test/webgen/cli/test_logger.rb +41 -0
- data/test/{test_contentprocessor_blocks.rb → webgen/content_processor/test_blocks.rb} +30 -28
- data/test/webgen/content_processor/test_builder.rb +25 -0
- data/test/webgen/content_processor/test_erb.rb +21 -0
- data/test/webgen/content_processor/test_erubis.rb +33 -0
- data/test/webgen/content_processor/test_fragments.rb +96 -0
- data/test/webgen/content_processor/test_haml.rb +24 -0
- data/test/webgen/content_processor/test_html_head.rb +78 -0
- data/test/webgen/content_processor/test_kramdown.rb +49 -0
- data/test/webgen/content_processor/test_maruku.rb +30 -0
- data/test/webgen/content_processor/test_r_discount.rb +18 -0
- data/test/webgen/content_processor/test_rdoc.rb +18 -0
- data/test/webgen/content_processor/test_redcloth.rb +23 -0
- data/test/webgen/content_processor/test_ruby.rb +24 -0
- data/test/webgen/content_processor/test_sass.rb +44 -0
- data/test/webgen/content_processor/test_scss.rb +23 -0
- data/test/webgen/content_processor/test_tags.rb +44 -0
- data/test/webgen/content_processor/test_tidy.rb +31 -0
- data/test/webgen/content_processor/test_tikz.rb +33 -0
- data/test/webgen/content_processor/test_xmllint.rb +32 -0
- data/test/webgen/destination/test_file_system.rb +54 -0
- data/test/webgen/item_tracker/test_file.rb +31 -0
- data/test/webgen/item_tracker/test_missing_node.rb +70 -0
- data/test/webgen/item_tracker/test_node_content.rb +42 -0
- data/test/webgen/item_tracker/test_node_meta_info.rb +44 -0
- data/test/webgen/item_tracker/test_nodes.rb +61 -0
- data/test/webgen/path_handler/test_base.rb +153 -0
- data/test/webgen/path_handler/test_copy.rb +56 -0
- data/test/webgen/path_handler/test_feed.rb +85 -0
- data/test/webgen/path_handler/test_meta_info.rb +98 -0
- data/test/webgen/path_handler/test_page.rb +25 -0
- data/test/webgen/path_handler/test_page_utils.rb +59 -0
- data/test/webgen/path_handler/test_sitemap.rb +95 -0
- data/test/webgen/path_handler/test_template.rb +64 -0
- data/test/webgen/path_handler/test_virtual.rb +87 -0
- data/test/webgen/source/test_file_system.rb +51 -0
- data/test/webgen/source/test_stacked.rb +35 -0
- data/test/{test_source_tararchive.rb → webgen/source/test_tar_archive.rb} +10 -25
- data/test/webgen/tag/test_breadcrumb_trail.rb +66 -0
- data/test/webgen/tag/test_coderay.rb +34 -0
- data/test/webgen/tag/test_date.rb +18 -0
- data/test/webgen/tag/test_execute_command.rb +36 -0
- data/test/webgen/tag/test_include_file.rb +35 -0
- data/test/webgen/tag/test_langbar.rb +50 -0
- data/test/webgen/tag/test_link.rb +40 -0
- data/test/webgen/tag/test_menu.rb +61 -0
- data/test/webgen/tag/test_meta_info.rb +25 -0
- data/test/webgen/tag/test_relocatable.rb +50 -0
- data/test/webgen/tag/test_tikz.rb +41 -0
- data/test/webgen/task/test_create_website.rb +46 -0
- data/test/webgen/test_blackboard.rb +31 -0
- data/test/webgen/test_bundle_loader.rb +55 -0
- data/test/{test_cache.rb → webgen/test_cache.rb} +3 -15
- data/test/webgen/test_cli.rb +41 -0
- data/test/webgen/test_configuration.rb +131 -0
- data/test/webgen/test_content_processor.rb +86 -0
- data/test/webgen/test_context.rb +73 -0
- data/test/webgen/test_core_ext.rb +20 -0
- data/test/webgen/test_destination.rb +48 -0
- data/test/webgen/test_error.rb +121 -0
- data/test/webgen/test_extension_manager.rb +70 -0
- data/test/webgen/test_item_tracker.rb +106 -0
- data/test/{test_languages.rb → webgen/test_languages.rb} +4 -4
- data/test/webgen/test_logger.rb +46 -0
- data/test/webgen/test_node.rb +178 -0
- data/test/webgen/test_node_finder.rb +127 -0
- data/test/{test_page.rb → webgen/test_page.rb} +44 -48
- data/test/webgen/test_path.rb +271 -0
- data/test/{test_webgentask.rb → webgen/test_rake_task.rb} +4 -4
- data/test/webgen/test_source.rb +59 -0
- data/test/webgen/test_tag.rb +137 -0
- data/test/webgen/test_task.rb +40 -0
- data/test/webgen/test_tree.rb +147 -0
- data/test/webgen/test_utils.rb +16 -0
- data/test/webgen/test_website.rb +45 -0
- data/test/webgen/utils/test_tag_parser.rb +99 -0
- metadata +292 -344
- data/data/webgen/passive_sources/templates/atom_feed.template +0 -39
- data/data/webgen/passive_sources/templates/rss_feed.template +0 -28
- data/data/webgen/resources.yaml +0 -4
- data/data/webgen/webgui/app.rb +0 -11
- data/data/webgen/webgui/controller/main.rb +0 -135
- data/data/webgen/webgui/layout/default.xhtml +0 -40
- data/data/webgen/webgui/overrides/win32console.rb +0 -0
- data/data/webgen/webgui/public/css/jquery.autocomplete.css +0 -50
- data/data/webgen/webgui/public/css/ramaze_error.css +0 -90
- data/data/webgen/webgui/public/css/style.css +0 -55
- data/data/webgen/webgui/public/img/headerbg.jpg +0 -0
- data/data/webgen/webgui/public/img/webgen_logo.png +0 -0
- data/data/webgen/webgui/public/js/jquery.autocomplete.js +0 -15
- data/data/webgen/webgui/public/js/jquery.js +0 -32
- data/data/webgen/webgui/start.rb +0 -9
- data/data/webgen/webgui/view/create_website.xhtml +0 -14
- data/data/webgen/webgui/view/error.xhtml +0 -64
- data/data/webgen/webgui/view/index.xhtml +0 -22
- data/data/webgen/webgui/view/manage_website.xhtml +0 -18
- data/data/webgen/website_skeleton/README +0 -10
- data/data/webgen/website_skeleton/Rakefile +0 -69
- data/data/webgen/website_skeleton/config.yaml +0 -35
- data/data/webgen/website_skeleton/ext/init.rb +0 -10
- data/doc/contentprocessor.template +0 -11
- data/doc/contentprocessor/blocks.page +0 -129
- data/doc/contentprocessor/builder.page +0 -79
- data/doc/contentprocessor/erb.page +0 -60
- data/doc/contentprocessor/erubis.page +0 -46
- data/doc/contentprocessor/fragments.page +0 -26
- data/doc/contentprocessor/haml.page +0 -46
- data/doc/contentprocessor/head.page +0 -31
- data/doc/contentprocessor/kramdown.page +0 -49
- data/doc/contentprocessor/less.page +0 -34
- data/doc/contentprocessor/maruku.page +0 -44
- data/doc/contentprocessor/rdiscount.page +0 -37
- data/doc/contentprocessor/rdoc.page +0 -36
- data/doc/contentprocessor/redcloth.page +0 -41
- data/doc/contentprocessor/sass.page +0 -31
- data/doc/contentprocessor/scss.page +0 -39
- data/doc/contentprocessor/tags.page +0 -73
- data/doc/contentprocessor/tidy.page +0 -14
- data/doc/contentprocessor/xmllint.page +0 -14
- data/doc/extensions.metainfo +0 -29
- data/doc/extensions.page +0 -15
- data/doc/extensions.template +0 -17
- data/doc/faq.page +0 -222
- data/doc/getting_started.page +0 -135
- data/doc/index.page +0 -71
- data/doc/manual.page +0 -727
- data/doc/reference_configuration.page +0 -1254
- data/doc/reference_metainfo.page +0 -265
- data/doc/reference_website_styles.page +0 -32
- data/doc/source/filesystem.page +0 -41
- data/doc/source/tararchive.page +0 -40
- data/doc/sourcehandler.template +0 -23
- data/doc/sourcehandler/copy.page +0 -19
- data/doc/sourcehandler/directory.page +0 -27
- data/doc/sourcehandler/feed.page +0 -102
- data/doc/sourcehandler/metainfo.page +0 -48
- data/doc/sourcehandler/page.page +0 -14
- data/doc/sourcehandler/sitemap.page +0 -46
- data/doc/sourcehandler/template.page +0 -45
- data/doc/sourcehandler/virtual.page +0 -49
- data/doc/tag.template +0 -25
- data/doc/tag/breadcrumbtrail.page +0 -40
- data/doc/tag/coderay.page +0 -53
- data/doc/tag/date.page +0 -31
- data/doc/tag/executecommand.page +0 -26
- data/doc/tag/includefile.page +0 -32
- data/doc/tag/langbar.page +0 -47
- data/doc/tag/link.page +0 -44
- data/doc/tag/menu.page +0 -109
- data/doc/tag/metainfo.page +0 -29
- data/doc/tag/relocatable.page +0 -38
- data/doc/tag/sitemap.page +0 -31
- data/doc/tag/tikz.page +0 -159
- data/doc/upgrading.page +0 -138
- data/doc/webgen_page_format.page +0 -129
- data/doc/website_styles.metainfo +0 -8
- data/lib/webgen/cli/apply_command.rb +0 -66
- data/lib/webgen/cli/run_command.rb +0 -22
- data/lib/webgen/cli/webgui_command.rb +0 -68
- data/lib/webgen/common.rb +0 -27
- data/lib/webgen/common/sitemap.rb +0 -83
- data/lib/webgen/contentprocessor.rb +0 -117
- data/lib/webgen/contentprocessor/blocks.rb +0 -92
- data/lib/webgen/contentprocessor/builder.rb +0 -29
- data/lib/webgen/contentprocessor/erb.rb +0 -26
- data/lib/webgen/contentprocessor/erubis.rb +0 -39
- data/lib/webgen/contentprocessor/fragments.rb +0 -25
- data/lib/webgen/contentprocessor/haml.rb +0 -34
- data/lib/webgen/contentprocessor/head.rb +0 -128
- data/lib/webgen/contentprocessor/kramdown.rb +0 -27
- data/lib/webgen/contentprocessor/kramdown/html.rb +0 -36
- data/lib/webgen/contentprocessor/less.rb +0 -35
- data/lib/webgen/contentprocessor/maruku.rb +0 -36
- data/lib/webgen/contentprocessor/rdiscount.rb +0 -19
- data/lib/webgen/contentprocessor/rdoc.rb +0 -20
- data/lib/webgen/contentprocessor/redcloth.rb +0 -21
- data/lib/webgen/contentprocessor/sass.rb +0 -22
- data/lib/webgen/contentprocessor/scss.rb +0 -22
- data/lib/webgen/contentprocessor/tags.rb +0 -170
- data/lib/webgen/contentprocessor/tidy.rb +0 -38
- data/lib/webgen/contentprocessor/xmllint.rb +0 -37
- data/lib/webgen/context/render.rb +0 -32
- data/lib/webgen/context/tags.rb +0 -20
- data/lib/webgen/coreext.rb +0 -13
- data/lib/webgen/default_config.rb +0 -240
- data/lib/webgen/loggable.rb +0 -25
- data/lib/webgen/output.rb +0 -86
- data/lib/webgen/output/filesystem.rb +0 -69
- data/lib/webgen/source/filesystem.rb +0 -61
- data/lib/webgen/source/resource.rb +0 -45
- data/lib/webgen/source/tararchive.rb +0 -78
- data/lib/webgen/sourcehandler.rb +0 -275
- data/lib/webgen/sourcehandler/base.rb +0 -281
- data/lib/webgen/sourcehandler/copy.rb +0 -44
- data/lib/webgen/sourcehandler/directory.rb +0 -30
- data/lib/webgen/sourcehandler/feed.rb +0 -92
- data/lib/webgen/sourcehandler/fragment.rb +0 -70
- data/lib/webgen/sourcehandler/memory.rb +0 -42
- data/lib/webgen/sourcehandler/metainfo.rb +0 -128
- data/lib/webgen/sourcehandler/page.rb +0 -64
- data/lib/webgen/sourcehandler/sitemap.rb +0 -60
- data/lib/webgen/sourcehandler/template.rb +0 -66
- data/lib/webgen/sourcehandler/virtual.rb +0 -117
- data/lib/webgen/tag/base.rb +0 -170
- data/lib/webgen/tag/breadcrumbtrail.rb +0 -70
- data/lib/webgen/tag/executecommand.rb +0 -31
- data/lib/webgen/tag/includefile.rb +0 -42
- data/lib/webgen/tag/metainfo.rb +0 -27
- data/lib/webgen/tag/sitemap.rb +0 -41
- data/lib/webgen/websiteaccess.rb +0 -31
- data/lib/webgen/websitemanager.rb +0 -125
- data/misc/default.css +0 -403
- data/misc/default.template +0 -76
- data/misc/htmldoc.metainfo +0 -26
- data/misc/htmldoc.virtual +0 -17
- data/misc/images/arrow.gif +0 -0
- data/misc/images/error.png +0 -0
- data/misc/images/headerbg.jpg +0 -0
- data/misc/images/important.png +0 -0
- data/misc/images/information.png +0 -0
- data/misc/images/quote.gif +0 -0
- data/misc/images/warning.png +0 -0
- data/misc/logo.svg +0 -313
- data/misc/style.page +0 -33
- data/test/helper.rb +0 -61
- data/test/test_blackboard.rb +0 -60
- data/test/test_cli.rb +0 -119
- data/test/test_common_sitemap.rb +0 -58
- data/test/test_configuration.rb +0 -68
- data/test/test_contentprocessor.rb +0 -39
- data/test/test_contentprocessor_builder.rb +0 -41
- data/test/test_contentprocessor_erb.rb +0 -33
- data/test/test_contentprocessor_erubis.rb +0 -62
- data/test/test_contentprocessor_fragments.rb +0 -43
- data/test/test_contentprocessor_haml.rb +0 -39
- data/test/test_contentprocessor_head.rb +0 -96
- data/test/test_contentprocessor_kramdown.rb +0 -56
- data/test/test_contentprocessor_less.rb +0 -40
- data/test/test_contentprocessor_maruku.rb +0 -33
- data/test/test_contentprocessor_rdiscount.rb +0 -21
- data/test/test_contentprocessor_rdoc.rb +0 -22
- data/test/test_contentprocessor_redcloth.rb +0 -26
- data/test/test_contentprocessor_sass.rb +0 -28
- data/test/test_contentprocessor_scss.rb +0 -28
- data/test/test_contentprocessor_tags.rb +0 -122
- data/test/test_contentprocessor_tidy.rb +0 -34
- data/test/test_contentprocessor_xmllint.rb +0 -38
- data/test/test_context.rb +0 -81
- data/test/test_error.rb +0 -93
- data/test/test_loggable.rb +0 -32
- data/test/test_logger.rb +0 -94
- data/test/test_node.rb +0 -469
- data/test/test_output_filesystem.rb +0 -60
- data/test/test_path.rb +0 -241
- data/test/test_source_filesystem.rb +0 -76
- data/test/test_source_resource.rb +0 -28
- data/test/test_source_stacked.rb +0 -49
- data/test/test_sourcehandler_base.rb +0 -136
- data/test/test_sourcehandler_copy.rb +0 -47
- data/test/test_sourcehandler_directory.rb +0 -38
- data/test/test_sourcehandler_feed.rb +0 -88
- data/test/test_sourcehandler_fragment.rb +0 -70
- data/test/test_sourcehandler_main.rb +0 -39
- data/test/test_sourcehandler_memory.rb +0 -44
- data/test/test_sourcehandler_metainfo.rb +0 -127
- data/test/test_sourcehandler_page.rb +0 -73
- data/test/test_sourcehandler_sitemap.rb +0 -68
- data/test/test_sourcehandler_template.rb +0 -68
- data/test/test_sourcehandler_virtual.rb +0 -106
- data/test/test_tag_base.rb +0 -62
- data/test/test_tag_breadcrumbtrail.rb +0 -91
- data/test/test_tag_coderay.rb +0 -45
- data/test/test_tag_date.rb +0 -18
- data/test/test_tag_executecommand.rb +0 -41
- data/test/test_tag_includefile.rb +0 -50
- data/test/test_tag_langbar.rb +0 -71
- data/test/test_tag_link.rb +0 -70
- data/test/test_tag_menu.rb +0 -207
- data/test/test_tag_metainfo.rb +0 -26
- data/test/test_tag_relocatable.rb +0 -60
- data/test/test_tag_sitemap.rb +0 -47
- data/test/test_tag_tikz.rb +0 -69
- data/test/test_tree.rb +0 -70
- data/test/test_website.rb +0 -130
- data/test/test_websiteaccess.rb +0 -25
- data/test/test_websitemanager.rb +0 -65
data/doc/reference_metainfo.page
DELETED
|
@@ -1,265 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Meta Information Reference
|
|
3
|
-
---
|
|
4
|
-
# Meta Information Reference
|
|
5
|
-
|
|
6
|
-
Following is a list of all the meta information items that are used in one way or another by an
|
|
7
|
-
extension, be it a source handler, a tag or any other extension. Each meta information description
|
|
8
|
-
follows the same pattern:
|
|
9
|
-
|
|
10
|
-
* First the type of the value and an example value are listed.
|
|
11
|
-
* Then the paths for which this item is useful are listed.
|
|
12
|
-
* And at last follows a detailed description.
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
{:miref: .meta-information-ref}
|
|
16
|
-
|
|
17
|
-
### author
|
|
18
|
-
|
|
19
|
-
* String: `Thomas Leitner`
|
|
20
|
-
* Any
|
|
21
|
-
{:miref}
|
|
22
|
-
|
|
23
|
-
Sets the author of the path. This information is used, for example, by Webgen::SourceHandler::Feed.
|
|
24
|
-
|
|
25
|
-
### author_url
|
|
26
|
-
|
|
27
|
-
* String: `http://webgen.rubyforge.org`
|
|
28
|
-
* Any where `author` is also set
|
|
29
|
-
{:miref}
|
|
30
|
-
|
|
31
|
-
Sets the homepage of the author of the path. This information is used, for example, by
|
|
32
|
-
Webgen::SourceHandler::Feed and normally only when `author` is also set.
|
|
33
|
-
|
|
34
|
-
### blocks
|
|
35
|
-
|
|
36
|
-
* Hash of Hashes: `\{default: {pipeline:textile}, 1: {name: content, pipeline:maruku,erb,tags}}`
|
|
37
|
-
* Files in Webgen Page Format
|
|
38
|
-
{:miref}
|
|
39
|
-
|
|
40
|
-
Specifies the default names and additional options for the blocks. The special key `default` is used
|
|
41
|
-
to set default options for all blocks. Specific options for (or the name of) a block can be set by
|
|
42
|
-
using the block index as key (numbering starts from one).
|
|
43
|
-
|
|
44
|
-
### change_freq
|
|
45
|
-
|
|
46
|
-
* String: `hourly`
|
|
47
|
-
* Any
|
|
48
|
-
{:miref}
|
|
49
|
-
|
|
50
|
-
Sets the change frequency of the page. This information is used, for example, by the sitemap source
|
|
51
|
-
handler. You can use the following values for this key: `hourly, daily, weekly, monthly, yearly,
|
|
52
|
-
never`.
|
|
53
|
-
|
|
54
|
-
### created_at
|
|
55
|
-
|
|
56
|
-
* Time: `2008-08-14 10:25:34 +02:00`
|
|
57
|
-
* Any
|
|
58
|
-
{:miref}
|
|
59
|
-
|
|
60
|
-
Sets the time when the path was created. This information cannot automatically be derived for paths
|
|
61
|
-
provided by Webgen::Source::FileSystem, so this has to be set manually.
|
|
62
|
-
|
|
63
|
-
> Note that the value needs to be a valid [YAML timestamp](http://yaml.org/type/timestamp.html) and
|
|
64
|
-
> needs to include the time part.
|
|
65
|
-
{:.information}
|
|
66
|
-
|
|
67
|
-
### draft
|
|
68
|
-
|
|
69
|
-
* Boolean: `true`
|
|
70
|
-
* Any
|
|
71
|
-
{:miref}
|
|
72
|
-
|
|
73
|
-
If this meta information is set on a path, no node will be created from it. This is useful to add
|
|
74
|
-
content to a website which should only be used later on.
|
|
75
|
-
|
|
76
|
-
### fragments_in_menu
|
|
77
|
-
|
|
78
|
-
* Boolean: `false`
|
|
79
|
-
* Page files
|
|
80
|
-
{:miref}
|
|
81
|
-
|
|
82
|
-
Specifies if the fragment nodes of the page file should be in the menu.
|
|
83
|
-
|
|
84
|
-
### index_path
|
|
85
|
-
|
|
86
|
-
* String: `myindex.html`
|
|
87
|
-
* Directories
|
|
88
|
-
{:miref}
|
|
89
|
-
|
|
90
|
-
Sets the directory index path for the directory overriding the default value.
|
|
91
|
-
|
|
92
|
-
### in_menu
|
|
93
|
-
|
|
94
|
-
* Boolean: `true`
|
|
95
|
-
* Any
|
|
96
|
-
{:miref}
|
|
97
|
-
|
|
98
|
-
Specifies if the path should appear in menus.
|
|
99
|
-
|
|
100
|
-
### kind
|
|
101
|
-
|
|
102
|
-
* String: `page`
|
|
103
|
-
* Any
|
|
104
|
-
{:miref}
|
|
105
|
-
|
|
106
|
-
Specifies the kind of the path. Some source handlers define a default value for this meta
|
|
107
|
-
information for nodes created by them.
|
|
108
|
-
|
|
109
|
-
### lang
|
|
110
|
-
|
|
111
|
-
* String: `de`
|
|
112
|
-
* Any
|
|
113
|
-
{:miref}
|
|
114
|
-
|
|
115
|
-
Sets the language for the path. Has to be a valid ISO-639-1/2 character code for the language. This
|
|
116
|
-
meta information needs to be set before a node gets created.
|
|
117
|
-
|
|
118
|
-
### link
|
|
119
|
-
|
|
120
|
-
* Hash: `\{next: next_doc.html, prev: prev_doc.html}`
|
|
121
|
-
* Page files
|
|
122
|
-
|
|
123
|
-
Specifies additional information, for example, about the position of the page file regarding other
|
|
124
|
-
files. A sample usage would be to express that the page file is logically followed or preceded by
|
|
125
|
-
certain page file.
|
|
126
|
-
|
|
127
|
-
The value needs to be hash and its keys need to be [link types] except for the special `javascript`
|
|
128
|
-
and `css` keys (which will be discussed below). The link type is used to specify the relation of the
|
|
129
|
-
page to the linked file. The value can either be a string which is interpreted as a path to the
|
|
130
|
-
internal or external file; or a hash with arbitrary key-value pairs (use lower case key names) but
|
|
131
|
-
it should include at least a `href` key to specify the path to the internal or external file; or an
|
|
132
|
-
array containing strings or hashes to specify more than one linked file for a given link type.
|
|
133
|
-
|
|
134
|
-
The special keys `javascript` and `css` may have an array of strings or a string as value which are
|
|
135
|
-
interpreted as path to javascript/CSS files that should be included.
|
|
136
|
-
|
|
137
|
-
This information is used by [`ContentProcessor::Head`](contentprocessor/head.html) to insert the
|
|
138
|
-
approriate tags in the head section of an HTML document.
|
|
139
|
-
|
|
140
|
-
[link types]: http://www.w3.org/TR/html401/types.html#type-links
|
|
141
|
-
|
|
142
|
-
### link_attrs
|
|
143
|
-
|
|
144
|
-
* Hash: `\{title: Hallo, class: extra}`
|
|
145
|
-
* Any
|
|
146
|
-
{:miref}
|
|
147
|
-
|
|
148
|
-
Specifies additional attribute-value pairs (in form of a Hash) that should be added to a link to the
|
|
149
|
-
path.
|
|
150
|
-
|
|
151
|
-
### meta
|
|
152
|
-
|
|
153
|
-
* Hash: `\{author: Thomas Leitner, generator: My program}`
|
|
154
|
-
* Page files
|
|
155
|
-
{:miref}
|
|
156
|
-
|
|
157
|
-
Specifies names and values for `<meta>` HTML tags. These key-value pairs are then properly escaped
|
|
158
|
-
and inserted into the output file by [`ContentProcessor::Head`](contentprocessor/head.html).
|
|
159
|
-
|
|
160
|
-
### modified_at
|
|
161
|
-
|
|
162
|
-
* Time: `2008-08-14 10:25:34 +02:00`
|
|
163
|
-
* Any
|
|
164
|
-
{:miref}
|
|
165
|
-
|
|
166
|
-
Sets the time when the path was last modified. This information is automatically set for paths
|
|
167
|
-
provided by Webgen::Source::FileSystem (the file modification is used) but can be overridden by
|
|
168
|
-
setting it manually. If not set to a valid time, the time when webgen is executed is used for this
|
|
169
|
-
meta information.
|
|
170
|
-
|
|
171
|
-
> Note that the value needs to be a valid [YAML timestamp](http://yaml.org/type/timestamp.html) and
|
|
172
|
-
> needs to include the time part.
|
|
173
|
-
{:.information}
|
|
174
|
-
|
|
175
|
-
### no_output
|
|
176
|
-
|
|
177
|
-
* Boolean: `true`
|
|
178
|
-
* Any
|
|
179
|
-
{:miref}
|
|
180
|
-
|
|
181
|
-
Specifies whether an output path for the node should be written or not. This differs from `draft`
|
|
182
|
-
that a node for the path gets created nonetheless.
|
|
183
|
-
|
|
184
|
-
### omit_index_path
|
|
185
|
-
|
|
186
|
-
* Boolean: `false`
|
|
187
|
-
* Index paths
|
|
188
|
-
{:miref}
|
|
189
|
-
|
|
190
|
-
Controls whether the index path should appear in a breadcrumb trail despite the setting of the
|
|
191
|
-
`tag.breadcrumbtrail.omit_index_path` option.
|
|
192
|
-
|
|
193
|
-
### output_path_style
|
|
194
|
-
|
|
195
|
-
* Array: `[:parent, :basename, [., :lang], .html]`
|
|
196
|
-
* Any
|
|
197
|
-
{:miref}
|
|
198
|
-
|
|
199
|
-
Sets a custom output path style for the specified path. The basename is substituted for the value
|
|
200
|
-
`:basename` and the language for the value `:lang`. Strings are used verbatim. If `:lang` is
|
|
201
|
-
specified in a sub-array, the whole sub-array is omitted, if the configuration option
|
|
202
|
-
`sourcehandler.default_lang_in_output_path` is false. For more and detailed information, have look
|
|
203
|
-
at the [output path creation section](manual.html#source-output) of the manual!
|
|
204
|
-
|
|
205
|
-
> This meta information has to be set BEFORE a node gets created. Setting this value is therefore
|
|
206
|
-
> only useful, for example, in the `paths` block of a meta information backing file.
|
|
207
|
-
{:.important}
|
|
208
|
-
|
|
209
|
-
### priority
|
|
210
|
-
|
|
211
|
-
* Float: `0.5`
|
|
212
|
-
* Any
|
|
213
|
-
{:miref}
|
|
214
|
-
|
|
215
|
-
Specifies the priority of this file in respect to all the other files of the website. This
|
|
216
|
-
information is used, for example, by the sitemap source handler.
|
|
217
|
-
|
|
218
|
-
### routed_title
|
|
219
|
-
|
|
220
|
-
* String: `Image Directory`
|
|
221
|
-
* Any
|
|
222
|
-
{:miref}
|
|
223
|
-
|
|
224
|
-
Only used if set on a directory index path; specifies the title of the directory for which it is the
|
|
225
|
-
index path. If this meta information is not specified, the title of the directory will be used
|
|
226
|
-
instead.
|
|
227
|
-
|
|
228
|
-
### sort_info
|
|
229
|
-
|
|
230
|
-
* Integer or String: `15`
|
|
231
|
-
* Any
|
|
232
|
-
{:miref}
|
|
233
|
-
|
|
234
|
-
Sets the sort information for the path. Any String or Integer value can be used here. When two nodes
|
|
235
|
-
are compared using this information and both have Integers, then an Integer comparision is
|
|
236
|
-
done. Otherwise a String comparision is done.
|
|
237
|
-
|
|
238
|
-
Setting a String value is useful, for example, for specifying dates as sort information.
|
|
239
|
-
|
|
240
|
-
### template
|
|
241
|
-
|
|
242
|
-
* String or null: `my.template` or `~`
|
|
243
|
-
* Page/Template files
|
|
244
|
-
{:miref}
|
|
245
|
-
|
|
246
|
-
Sets the template for the page/template file overriding the default value. If set to null
|
|
247
|
-
(i.e. `~`), no template is used for the page/template file!
|
|
248
|
-
|
|
249
|
-
### title
|
|
250
|
-
|
|
251
|
-
* String: `New Title`
|
|
252
|
-
* Any
|
|
253
|
-
{:miref}
|
|
254
|
-
|
|
255
|
-
Sets the title for the path.
|
|
256
|
-
|
|
257
|
-
### used_nodes
|
|
258
|
-
|
|
259
|
-
* Array: `[*.en.html, test.de.html]`
|
|
260
|
-
* Any
|
|
261
|
-
{:miref}
|
|
262
|
-
|
|
263
|
-
The value of this meta information needs to be an array of alcn patterns. All nodes that match at
|
|
264
|
-
least one of the patterns are considered to be dependencies of the node. Therefore if any of these
|
|
265
|
-
nodes change, the node will be regenerated, too.
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Website Styles Reference
|
|
3
|
-
---
|
|
4
|
-
# Website Styles Reference
|
|
5
|
-
|
|
6
|
-
Following is a list of all website styles that are included in the webgen distribution. Each style
|
|
7
|
-
can be used when creating a website by using the command
|
|
8
|
-
|
|
9
|
-
webgen create -b default -b STYLE_NAME SITE_DIR
|
|
10
|
-
|
|
11
|
-
or applied later using the command
|
|
12
|
-
|
|
13
|
-
webgen apply STYLE_NAME
|
|
14
|
-
|
|
15
|
-
When you click on the link provided for each website style, you will get a full browser preview of
|
|
16
|
-
the respective website style. You can then return to this list by using the *back button* of your
|
|
17
|
-
browser.
|
|
18
|
-
|
|
19
|
-
If you want to create such a style yourself, you may want to read
|
|
20
|
-
[this](manual.html#create-website-style)!
|
|
21
|
-
|
|
22
|
-
<%
|
|
23
|
-
context.content_node.tree.node_access[:alcn].select do |name, node|
|
|
24
|
-
node.is_directory? && node.parent == context.content_node.tree[File.join(context.content_node.parent.alcn, '/website_styles/')]
|
|
25
|
-
end.sort.each do |name, node|
|
|
26
|
-
%>
|
|
27
|
-
<h2 id="<%= node.cn.chomp('/') %>"><%= node.cn %></h2>
|
|
28
|
-
<div class="website-styles">
|
|
29
|
-
<%= context.dest_node.link_to(node, :link_text => "Full window version") %>
|
|
30
|
-
<object type="text/html" data="<%= context.dest_node.route_to(node) %>">Nothing</object>
|
|
31
|
-
</div>
|
|
32
|
-
<% end %>
|
data/doc/source/filesystem.page
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Webgen::Source::FileSystem
|
|
3
|
-
---
|
|
4
|
-
## Description
|
|
5
|
-
|
|
6
|
-
This is the default source extension used when creating a new webgen website. It uses files that
|
|
7
|
-
match a certain path pattern (default value for the path pattern is to match all files) under a
|
|
8
|
-
specific directory.
|
|
9
|
-
|
|
10
|
-
> The default configuration for a new website uses all files under the `src` directory.
|
|
11
|
-
{:.information}
|
|
12
|
-
|
|
13
|
-
The first parameter for the file system source is the directory under which the to-be-used files are
|
|
14
|
-
and the second, optional, parameter specifies a path pattern (see [Path
|
|
15
|
-
Patterns](../manual.html#source-pathpattern) and [Dir.glob]).
|
|
16
|
-
|
|
17
|
-
[Dir.glob]: http://ruby-doc.org/core/classes/Dir.html#M002375
|
|
18
|
-
|
|
19
|
-
## Examples
|
|
20
|
-
|
|
21
|
-
The used sources can be specified via the [`sources` configuration
|
|
22
|
-
option](../reference_configuration.html#sources), so each of the examples below can be specified in
|
|
23
|
-
the `config.yaml` file.
|
|
24
|
-
|
|
25
|
-
1. The default configuration: all files under the `src` folder of the website directory
|
|
26
|
-
|
|
27
|
-
sources: [[/, Webgen::Source::FileSystem, src]]
|
|
28
|
-
|
|
29
|
-
2. The default configuration and additionally all files under a `misc` directory:
|
|
30
|
-
|
|
31
|
-
sources:
|
|
32
|
-
- [/, Webgen::Source::FileSystem, src]
|
|
33
|
-
- [/, Webgen::Source::FileSystem, misc]
|
|
34
|
-
|
|
35
|
-
3. The default configuration and mounting all image files from an external directory under the
|
|
36
|
-
`/images/` directory:
|
|
37
|
-
|
|
38
|
-
sources:
|
|
39
|
-
- [/, Webgen::Source::FileSystem, src]
|
|
40
|
-
- [/images/, Webgen::Source::FileSystem, /media/storage/pictures, **/*.jpg]
|
|
41
|
-
|
data/doc/source/tararchive.page
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Webgen::Source::TarArchive
|
|
3
|
-
---
|
|
4
|
-
## Description
|
|
5
|
-
|
|
6
|
-
The tar archive source can be used to include the files from a (possibly gzipped) tar archive. The
|
|
7
|
-
used archive can be stored locally on the file system but it is also possible to use archives
|
|
8
|
-
accessible via the http(s) and ftp protcols.
|
|
9
|
-
|
|
10
|
-
> This extension is only available if you have installed the [archive-tar-minitar][1] library. The
|
|
11
|
-
> preferred way to do this is via Rubygems:
|
|
12
|
-
>
|
|
13
|
-
> gem install archive-tar-minitar
|
|
14
|
-
{:.warning}
|
|
15
|
-
|
|
16
|
-
The first parameter for the tar archive source is the URL of the archive and the second, optional,
|
|
17
|
-
parameter specifies a path pattern (see [File.fnmatch]) for selecting the to-be-used
|
|
18
|
-
files/directories in the tar archive.
|
|
19
|
-
|
|
20
|
-
[File.fnmatch]: http://ruby-doc.org/core/classes/File.html#M002603
|
|
21
|
-
[1]: http://raa.ruby-lang.org/project/minitar/
|
|
22
|
-
|
|
23
|
-
## Examples
|
|
24
|
-
|
|
25
|
-
The used sources can be specified via the [`sources` configuration
|
|
26
|
-
option](../reference_configuration.html#sources), so each of the examples below can be specified in
|
|
27
|
-
the `config.yaml` file.
|
|
28
|
-
|
|
29
|
-
1. Using all files/directories from a local tar archive in addition the default configuration:
|
|
30
|
-
|
|
31
|
-
sources:
|
|
32
|
-
- [/, Webgen::Source::FileSystem, src]
|
|
33
|
-
- [/, Webgen::Source::TarArchive, archive.tar]
|
|
34
|
-
|
|
35
|
-
2. Using images stored in a remote gzipped tar archive in addition to the default configuration:
|
|
36
|
-
|
|
37
|
-
sources:
|
|
38
|
-
- [/, Webgen::Source::FileSystem, src]
|
|
39
|
-
- [/, Webgen::Source::TarArchive, http://www.example.com/archive/data.tgz, **/*.jpg]
|
|
40
|
-
|
data/doc/sourcehandler.template
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
template: extensions.template
|
|
3
|
-
--- name:summary pipeline:erb,tags,kramdown,blocks
|
|
4
|
-
<%
|
|
5
|
-
patterns = context.website.config['sourcehandler.patterns'][context.content_node['title']]
|
|
6
|
-
if patterns
|
|
7
|
-
%>
|
|
8
|
-
This source handler operates on paths that match one of the following path patterns (see the [path pattern documentation](manual.html#source-pathpattern) for more information): `<%= patterns.join(', ') %>`
|
|
9
|
-
<% end %>
|
|
10
|
-
|
|
11
|
-
<%
|
|
12
|
-
meta_info = context.website.config['sourcehandler.default_meta_info'][context.content_node['title']]
|
|
13
|
-
if meta_info
|
|
14
|
-
%>
|
|
15
|
-
Following is the default meta information set on any node created by this source handler:
|
|
16
|
-
|
|
17
|
-
<pre>
|
|
18
|
-
<%= meta_info.to_yaml.gsub(/^---/, '').strip %>
|
|
19
|
-
</pre>
|
|
20
|
-
<% end %>
|
|
21
|
-
|
|
22
|
-
--- name:content
|
|
23
|
-
<webgen:block name='content' />
|
data/doc/sourcehandler/copy.page
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Webgen::SourceHandler::Copy
|
|
3
|
-
---
|
|
4
|
-
## Description
|
|
5
|
-
|
|
6
|
-
This source handler copies files from the source to the output directory, optionally running a
|
|
7
|
-
content processor over the content. It is useful, for example, for CSS stylesheets, javascript files
|
|
8
|
-
and images.
|
|
9
|
-
|
|
10
|
-
It decides using the file extension if a content processor should be used and which one. If the
|
|
11
|
-
short name of a content processor is the first part of the file extension, the file is processed by
|
|
12
|
-
this content processor and the first part is removed from the file extension. Otherwise no
|
|
13
|
-
processing is done at all. For example, a file named `hello.jpg` just gets copied verbatimly but a
|
|
14
|
-
file named `usage.erb.html` gets preprocessed by the `erb` content processor and written to a file
|
|
15
|
-
named `usage.html`. As you can see in this example, the processor name gets stripped from the file
|
|
16
|
-
extension.
|
|
17
|
-
|
|
18
|
-
If you want to use a specific content processor for processing a file, have a look at its
|
|
19
|
-
documentation page which shows the unique short name that needs to be used in the file extension.
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Webgen::SourceHandler::Directory
|
|
3
|
-
---
|
|
4
|
-
## Description
|
|
5
|
-
|
|
6
|
-
The directory handler is used for handling directories, ie. it creates the target directories.
|
|
7
|
-
Additionally an index path for each directory can be specified which is used instead of the plain
|
|
8
|
-
directory index for displaying purposes. This means that when the directory path is specified
|
|
9
|
-
(e.g. by Webgen::Tag::Relocatable) the index path is returned.
|
|
10
|
-
|
|
11
|
-
The name of the index path is specified with the meta information `index_path` which is set to
|
|
12
|
-
`index.html` by default. This meta information needs to be set directly on the directory node (for
|
|
13
|
-
example, via a meta information backing file).
|
|
14
|
-
|
|
15
|
-
The title for a directory can be set via the `title` meta information on the directory itself.
|
|
16
|
-
However, if the directory has an index path, the meta information `routed_title` of the index path
|
|
17
|
-
is used for the directory title. This enables webgen to provide correctly localized directory names.
|
|
18
|
-
|
|
19
|
-
Normally, webgen shows a warning if it could not find the directory index path for a directory.
|
|
20
|
-
However, there are most certainly directories which should not have an index path, for example, a
|
|
21
|
-
directory containing only images. To prevent webgen from displaying warnings for such directories,
|
|
22
|
-
you can set a null index path using a meta information backing file:
|
|
23
|
-
|
|
24
|
-
dirWithOnlyImages:
|
|
25
|
-
index_path: ~
|
|
26
|
-
|
|
27
|
-
This will prevent webgen from showing warnings because you explicitly define a null index path.
|