webgen 0.5.17 → 1.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- 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/tag/executecommand.page
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Webgen::Tag::ExecuteCommand
|
3
|
-
used_options:
|
4
|
-
- tag.executecommand.command
|
5
|
-
- tag.executecommand.process_output
|
6
|
-
- tag.executecommand.escape_html
|
7
|
-
---
|
8
|
-
## Description
|
9
|
-
|
10
|
-
The execute command tag is used to include the output from a shell command.
|
11
|
-
|
12
|
-
## Examples
|
13
|
-
|
14
|
-
<table class="examples">
|
15
|
-
<tr>
|
16
|
-
<th>Usage</th><th>Output</th>
|
17
|
-
</tr>
|
18
|
-
<tr>
|
19
|
-
<td>\{execute_cmd: uname -p}</td>
|
20
|
-
<td><pre>{execute_cmd: uname -p}</pre></td>
|
21
|
-
</tr>
|
22
|
-
<tr>
|
23
|
-
<td>\{execute_cmd: {command: 'ruby -v'}}</td>
|
24
|
-
<td><pre>{execute_cmd: {command: 'ruby -v'}}</pre></td>
|
25
|
-
</tr>
|
26
|
-
</table>
|
data/doc/tag/includefile.page
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Webgen::Tag::IncludeFile
|
3
|
-
used_options:
|
4
|
-
- tag.includefile.filename
|
5
|
-
- tag.includefile.process_output
|
6
|
-
- tag.includefile.escape_html
|
7
|
-
---
|
8
|
-
## Description
|
9
|
-
|
10
|
-
The include file tag is used to include the content of a file. The filename needs to be specified
|
11
|
-
relative to the website directory or as an absolute filename.
|
12
|
-
|
13
|
-
> By surrounding the include file tag with a syntax highlighting tag it is possible to highlight the
|
14
|
-
> contents of a file.
|
15
|
-
{:.information}
|
16
|
-
|
17
|
-
|
18
|
-
## Examples
|
19
|
-
|
20
|
-
<table class="examples">
|
21
|
-
<tr>
|
22
|
-
<th>Usage</th><th>Output</th>
|
23
|
-
</tr>
|
24
|
-
<tr>
|
25
|
-
<td>\{include_file: {filename: AUTHORS, process_output: false}}</td>
|
26
|
-
<% if File.exists?(File.join(context.website.directory, 'AUTHORS')) %>
|
27
|
-
<td><pre>{include_file: {filename: AUTHORS, process_output: false}}</pre></td>
|
28
|
-
<% else %>
|
29
|
-
<td><pre>{include_file: {filename: ../AUTHORS, process_output: false}}</pre></td>
|
30
|
-
<% end %>
|
31
|
-
</tr>
|
32
|
-
</table>
|
data/doc/tag/langbar.page
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Webgen::Tag::Langbar
|
3
|
-
used_options:
|
4
|
-
- tag.langbar.separator
|
5
|
-
- tag.langbar.show_own_lang
|
6
|
-
- tag.langbar.show_single_lang
|
7
|
-
- tag.langbar.lang_names
|
8
|
-
---
|
9
|
-
## Description
|
10
|
-
|
11
|
-
This tag is used to display a list of links to translations of the page. The text that is displayed
|
12
|
-
can be set via the configuration option `tag.langbar.lang_names` (if not set, the language code is
|
13
|
-
shown).
|
14
|
-
|
15
|
-
The option `tag.langbar.process_output` is useful in conjunction with `tag.langbar.lang_names` to
|
16
|
-
display language flags. For example, you can use the following entries in `config.yaml`:
|
17
|
-
|
18
|
-
tag.langbar.lang_names:
|
19
|
-
en: |
|
20
|
-
<img src="\{relocatable: img/flag_english.gif}" alt="English flag"/> English
|
21
|
-
de: |
|
22
|
-
<img src="\{relocatable: img/flag_german.gif}" alt="German flag"/> Deutsch
|
23
|
-
|
24
|
-
tag.langbar.process_output: true
|
25
|
-
|
26
|
-
This assumes that the `langbar` tag is *only* used in `src/default.template` and the flag images are
|
27
|
-
under `src/img/` (otherwise the `relocatable` tag cannot correctly find the paths). To work around
|
28
|
-
this, you could specify the `lang_names` directly in the `langbar` tag.
|
29
|
-
|
30
|
-
The CSS class `webgen-langbar-current-lang` is assigned to the HTML tag for the currently selected
|
31
|
-
language.
|
32
|
-
|
33
|
-
## Examples
|
34
|
-
|
35
|
-
<table class="examples">
|
36
|
-
<tr>
|
37
|
-
<th>Usage</th><th>Output</th>
|
38
|
-
</tr>
|
39
|
-
<tr>
|
40
|
-
<td>\{langbar:}</td>
|
41
|
-
<td>{langbar:}</td>
|
42
|
-
</tr>
|
43
|
-
<tr>
|
44
|
-
<td>\{langbar: {lang_names: {en: Englisch}}}</td>
|
45
|
-
<td>{langbar: {lang_names: {en: Englisch}}}</td>
|
46
|
-
</tr>
|
47
|
-
</table>
|
data/doc/tag/link.page
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Webgen::Tag::Link
|
3
|
-
used_options:
|
4
|
-
- tag.link.path
|
5
|
-
- tag.link.attr
|
6
|
-
---
|
7
|
-
## Description
|
8
|
-
|
9
|
-
This tag can be used to generate a link to an (absolute) (localized) canonical path. The generated
|
10
|
-
link will behave exactly like the ones generated by, for example, the breadcrumb trail tag or the
|
11
|
-
menu tag. So it respects the setting of the configuration option `website.link_to_current_page`
|
12
|
-
which means that if this option is set to `false` only a `span` element and not an `a` element is
|
13
|
-
created.
|
14
|
-
|
15
|
-
The configuration option `tag.link.attr` lets you specify additional HTML options that should be set
|
16
|
-
on the generated link. It can also be used to set the link text via the special `:link_text` key!
|
17
|
-
|
18
|
-
## Examples
|
19
|
-
|
20
|
-
<table class="examples">
|
21
|
-
<tr>
|
22
|
-
<th>Usage</th><th>Output</th>
|
23
|
-
</tr>
|
24
|
-
<tr>
|
25
|
-
<td>\{link: /default.css}</td>
|
26
|
-
<td>{link: /default.css}</td>
|
27
|
-
</tr>
|
28
|
-
<tr>
|
29
|
-
<td>\{link: link.html}</td>
|
30
|
-
<td>{link: link.html}</td>
|
31
|
-
</tr>
|
32
|
-
<tr>
|
33
|
-
<td>\{link: link.html#description}</td>
|
34
|
-
<td>{link: link.html#description}</td>
|
35
|
-
</tr>
|
36
|
-
<tr>
|
37
|
-
<td>\{link: ../}</td>
|
38
|
-
<td>{link: ../}</td>
|
39
|
-
</tr>
|
40
|
-
<tr>
|
41
|
-
<td>\{link: {path: relocatable.html, attr: {:link_text: A nicer link text, title: Just a title}}}</td>
|
42
|
-
<td>{link: {path: relocatable.html, attr: {:link_text: A nicer link text, title: Just a title}}}</td>
|
43
|
-
</tr>
|
44
|
-
</table>
|
data/doc/tag/menu.page
DELETED
@@ -1,109 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Webgen::Tag::Menu
|
3
|
-
used_options:
|
4
|
-
- tag.menu.used_nodes
|
5
|
-
- tag.menu.start_level
|
6
|
-
- tag.menu.min_levels
|
7
|
-
- tag.menu.max_levels
|
8
|
-
- tag.menu.show_current_subtree_only
|
9
|
-
- tag.menu.nested
|
10
|
-
---
|
11
|
-
## Description
|
12
|
-
|
13
|
-
The menu tag builds a seemingly simple menu using HTML lists. However, it is very flexible due to
|
14
|
-
its many options that let you decide every detail of the menu.
|
15
|
-
|
16
|
-
> The menu is constructed using HTML lists with `ul` and `li` tags. However, the menu normally
|
17
|
-
> looks better if no discs are shown for the menu items (using the CSS directive `list-style-type:
|
18
|
-
> none`).
|
19
|
-
{:.information}
|
20
|
-
|
21
|
-
It uses the meta information `in_menu` and `sort_info` to determine which nodes should be in the
|
22
|
-
menu and how they should be ordered. A separate menu tree is then created from all nodes for each
|
23
|
-
language.
|
24
|
-
|
25
|
-
By setting the option `tag.menu.used_nodes` to `fragments`, the menu tag can also be used for
|
26
|
-
generating an in-page content menu of all the header sections.
|
27
|
-
|
28
|
-
> When using the option value `files` for `tag.menu.used_nodes`, all nodes which are only in the
|
29
|
-
> menu because they have fragment nodes beneath them are not included in the menu.
|
30
|
-
>
|
31
|
-
> However, when using the value `all` for `tag.menu.used_nodes`, some nodes which have `in_menu` set
|
32
|
-
> to `false` may appear in the menu if they have fragments beneath them that are in the menu!
|
33
|
-
{:.important}
|
34
|
-
|
35
|
-
The rendered menu consists of `ul` and `li` tags and the links (or `span` elements) to the menu
|
36
|
-
entries . The `li` tags have special CSS classes set for styling. These CSS class names are as
|
37
|
-
follows:
|
38
|
-
|
39
|
-
* `webgen-menu-levelNUMBER`: Set on all menu items and can be used to style specific menu levels
|
40
|
-
only. `NUMBER` is replaced with the actual menu level, so the first level menu entries will get a
|
41
|
-
`webgen-menu-level1` class.
|
42
|
-
* `webgen-menu-submenu`: Set if the menu item contains sub menu items.
|
43
|
-
* `webgen-menu-submenu-inhierarchy`: Set if the menu item contains sub menu items and it is in the
|
44
|
-
sub tree of the rendered node.
|
45
|
-
* `webgen-menu-item-selected`: Set if the menu item corresponds to the rendered node.
|
46
|
-
|
47
|
-
The option `tag.menu.nested` decides whether a nested menu or a non-nested is generated. When
|
48
|
-
setting this option to `false` you need to ensure that `tag.menu.show_current_subtree_only` is set
|
49
|
-
to `true` and `tag.menu.min_levels` is set to `1`. Both ensure that no other subtree obfuscates the
|
50
|
-
menu.
|
51
|
-
|
52
|
-
> Set `tag.menu.nested` to `false` if you want to generate, for example, a horizontal menu, ie. a
|
53
|
-
> menu that has one horizontal bar for each menu level.
|
54
|
-
{:.information}
|
55
|
-
|
56
|
-
## "Static" Menus
|
57
|
-
|
58
|
-
It is also possible to define a "static" menu or to augment the dynamic menu with static entries by
|
59
|
-
using virtual files. They can be used to structure the menu the way you like it. This way it is also
|
60
|
-
possible to add one page under two different headings:
|
61
|
-
|
62
|
-
features.en.html:
|
63
|
-
in_menu: true
|
64
|
-
title: Features
|
65
|
-
url: index.en.html#features
|
66
|
-
|
67
|
-
newdir:
|
68
|
-
sort_info: 2
|
69
|
-
|
70
|
-
newdir/new.en.html:
|
71
|
-
sort_info: 1
|
72
|
-
in_menu: true
|
73
|
-
url: ../features.en.html
|
74
|
-
|
75
|
-
There is no need to specify `in_menu` for `newdir` since a page under the directory is in the
|
76
|
-
menu. Also be aware that you need to set the language explicitly if a file should only appear in the
|
77
|
-
menu for a specific language. Otherwise it appears in every menu. The `url` specifies the file that
|
78
|
-
should be shown when clicked on the generated link.
|
79
|
-
|
80
|
-
A completely "static" menu can be generated by only using virtual directories and files and not
|
81
|
-
setting `in_menu` for any other node.
|
82
|
-
|
83
|
-
## Examples
|
84
|
-
|
85
|
-
<table class="examples">
|
86
|
-
<tr>
|
87
|
-
<th>Usage</th><th>Output</th>
|
88
|
-
</tr>
|
89
|
-
<tr>
|
90
|
-
<td>\{menu: }</td>
|
91
|
-
<td>{menu:}</td>
|
92
|
-
</tr>
|
93
|
-
<tr>
|
94
|
-
<td>\{menu: {used_nodes: all}}</td>
|
95
|
-
<td>{menu: {used_nodes: all}}</td>
|
96
|
-
</tr>
|
97
|
-
<tr>
|
98
|
-
<td>\{menu: {used_nodes: files}}</td>
|
99
|
-
<td>{menu: {used_nodes: files}}</td>
|
100
|
-
</tr>
|
101
|
-
<tr>
|
102
|
-
<td>\{menu: {used_nodes: fragments}}</td>
|
103
|
-
<td>{menu: {used_nodes: fragments}}</td>
|
104
|
-
</tr>
|
105
|
-
<tr>
|
106
|
-
<td>\{menu: {used_nodes: all, nested: false}}</td>
|
107
|
-
<td>{menu: {used_nodes: all, nested: false}}</td>
|
108
|
-
</tr>
|
109
|
-
</table>
|
data/doc/tag/metainfo.page
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Webgen::Tag::Metainfo
|
3
|
-
---
|
4
|
-
## Description
|
5
|
-
|
6
|
-
The meta tag is used to copy meta information verbatim. It is used as fallback when no other tag
|
7
|
-
class for a specific tag name could not be found. For example, if you define a meta information with
|
8
|
-
the key `revision`, you can put the tag `\{revision:}` into a block of a page file and the value
|
9
|
-
gets substituted automatically.
|
10
|
-
|
11
|
-
An every day usage example for the meta tag would be including the title of a page in the
|
12
|
-
`head`-section of a HTML template or specifying the language of the HTML file by using the
|
13
|
-
`\{lang:}` tag.
|
14
|
-
|
15
|
-
## Examples
|
16
|
-
|
17
|
-
<table class="examples">
|
18
|
-
<tr>
|
19
|
-
<th>Usage</th><th>Output</th>
|
20
|
-
</tr>
|
21
|
-
<tr>
|
22
|
-
<td>\{title: }</td>
|
23
|
-
<td>{title:}</td>
|
24
|
-
</tr>
|
25
|
-
<tr>
|
26
|
-
<td>\{lang: }</td>
|
27
|
-
<td>{lang:}</td>
|
28
|
-
</tr>
|
29
|
-
</table>
|
data/doc/tag/relocatable.page
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Webgen::Tag::Relocatable
|
3
|
-
used_options:
|
4
|
-
- tag.relocatable.path
|
5
|
-
---
|
6
|
-
## Description
|
7
|
-
|
8
|
-
This tag ensures that the relative path to the specified path is always correct.
|
9
|
-
|
10
|
-
When the tag is used, it changes the directory part of the supplied path name to a relative path to
|
11
|
-
the destination and is most often used in template files. A relocatable tag looks like this:
|
12
|
-
`\{relocatable: default.css}`. If this was put into a template and the template was used by a file
|
13
|
-
in a subdirectory, then the `relocatable` tag would put `../default.css` into the output file; thus
|
14
|
-
ensuring that the relative path to file is valid.
|
15
|
-
|
16
|
-
> You can only use the `relocatable` tag with paths that are handled by webgen. If you want to
|
17
|
-
> handle paths that are not normally handled by webgen, create a virtual path for them.
|
18
|
-
{:.important}
|
19
|
-
|
20
|
-
If the specified path is an absolute URL (like `http://webgen.rubyforge.org`), it will just return
|
21
|
-
it. And if you specify an URL fragment, this fragment has to exist. If you don't want to resolve a
|
22
|
-
fragment, just don't specify it in the tag but afterwards!
|
23
|
-
|
24
|
-
## Examples
|
25
|
-
|
26
|
-
<table class="examples">
|
27
|
-
<tr>
|
28
|
-
<th>Usage</th><th>Output</th>
|
29
|
-
</tr>
|
30
|
-
<tr>
|
31
|
-
<td>\{relocatable: /default.css}</td>
|
32
|
-
<td>{relocatable: /default.css}</td>
|
33
|
-
</tr>
|
34
|
-
<tr>
|
35
|
-
<td>\{relocatable: ../}</td>
|
36
|
-
<td>{relocatable: ../}</td>
|
37
|
-
</tr>
|
38
|
-
</table>
|
data/doc/tag/sitemap.page
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Webgen::Tag::Sitemap
|
3
|
-
used_options:
|
4
|
-
- common.sitemap.honor_in_menu
|
5
|
-
- common.sitemap.any_lang
|
6
|
-
- common.sitemap.used_kinds
|
7
|
-
---
|
8
|
-
## Description
|
9
|
-
|
10
|
-
This tag is used to display a site map of the current website. The used nodes can be customized by
|
11
|
-
setting the above mentioned configuration options accordingly.
|
12
|
-
|
13
|
-
## Examples
|
14
|
-
|
15
|
-
<table class="examples">
|
16
|
-
<tr>
|
17
|
-
<th>Usage</th><th>Output</th>
|
18
|
-
</tr>
|
19
|
-
<tr>
|
20
|
-
<td>\{sitemap: }</td>
|
21
|
-
<td>{sitemap: }</td>
|
22
|
-
</tr>
|
23
|
-
<tr>
|
24
|
-
<td>\{sitemap: {honor_in_menu: true}}</td>
|
25
|
-
<td>{sitemap: {honor_in_menu: true}}</td>
|
26
|
-
</tr>
|
27
|
-
<tr>
|
28
|
-
<td>\{sitemap: {honor_in_menu: true, used_kinds: []}}</td>
|
29
|
-
<td>{sitemap: {honor_in_menu: true, used_kinds: []}}</td>
|
30
|
-
</tr>
|
31
|
-
</table>
|
data/doc/tag/tikz.page
DELETED
@@ -1,159 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Webgen::Tag::TikZ
|
3
|
-
used_options:
|
4
|
-
- tag.tikz.path
|
5
|
-
- tag.tikz.libraries
|
6
|
-
- tag.tikz.opts
|
7
|
-
- tag.tikz.resolution
|
8
|
-
- tag.tikz.transparent
|
9
|
-
- tag.tikz.img_attr
|
10
|
-
---
|
11
|
-
## Description
|
12
|
-
|
13
|
-
This tag provides support for automatically generating graphics with the fantastic PGF/TikZ library
|
14
|
-
for LaTeX. You will need to have a current LaTeX distribution with the PGF/TikZ library installed
|
15
|
-
and ImageMagick for this to work. You will also need Ghostscript if you want support for transparent
|
16
|
-
PNG images. More exactly, you will need to have the programs `pdflatex` (usually included in the
|
17
|
-
LaTeX distribution - for generating a PDF from the LaTeX document that describes the PGF/TikZ
|
18
|
-
graphic), `pdfcrop` (usually included in the LaTeX distribution - to crop the generated PDF and
|
19
|
-
throw away useless borders), `convert` (provided by ImageMagick - to convert the generated PDF
|
20
|
-
document to an image file format and to optionally resize them) and `gs` (provided by the
|
21
|
-
Ghostscript package - to generate transparent PNG images).
|
22
|
-
|
23
|
-
When using this tag, you need to set at least the default mandatory parameter `tag.tikz.path`. This
|
24
|
-
path specifies the source path that should be used for generating the image and should not
|
25
|
-
exist. The output path is dervied from this path the usual way. The extension used for this
|
26
|
-
parameter specifies the final image format that is used (a good choice is PNG). All other parameters
|
27
|
-
are optional. The commands for creating the PGF/TikZ picture are specified in the body of the
|
28
|
-
tag. Have a look at some of the examples below to set the power of PGF/TikZ.
|
29
|
-
|
30
|
-
If you want to generate transparent images, you will need to set `tag.tikz.transparent` to `true`
|
31
|
-
and specify a `tag.tikz.path` with a `.png` extension.
|
32
|
-
|
33
|
-
## Examples
|
34
|
-
|
35
|
-
These examples are taken (sometimes a little bit altered) from the great PGF Manual included in the
|
36
|
-
PGF/TikZ distribution.
|
37
|
-
|
38
|
-
<table class="examples">
|
39
|
-
<tr>
|
40
|
-
<th>Usage</th><th>Output</th>
|
41
|
-
</tr>
|
42
|
-
|
43
|
-
<tr>
|
44
|
-
<td>
|
45
|
-
<pre>
|
46
|
-
\{tikz:: house.png}
|
47
|
-
\tikz \draw[thick,rounded corners=8pt]
|
48
|
-
(0,0) -- (0,2) -- (1,3.25) -- (2,2) -- (2,0) -- (0,2) -- (2,2) -- (0,0) -- (2,0);
|
49
|
-
{tikz}
|
50
|
-
</pre>
|
51
|
-
</td>
|
52
|
-
<td>
|
53
|
-
{tikz:: house.png}
|
54
|
-
\tikz \draw[thick,rounded corners=8pt]
|
55
|
-
(0,0) -- (0,2) -- (1,3.25) -- (2,2) -- (2,0) -- (0,2) -- (2,2) -- (0,0) -- (2,0);
|
56
|
-
{tikz}
|
57
|
-
</td>
|
58
|
-
</tr>
|
59
|
-
|
60
|
-
<tr>
|
61
|
-
<td>
|
62
|
-
<pre>
|
63
|
-
\{tikz:: {path: chain.png, libraries: [arrows,automata,shadows,positioning],
|
64
|
-
opts: "->,>=stealth,shorten >=1pt,auto,node distance=2.8cm,on grid,semithick,
|
65
|
-
every state/.style={fill=red,draw=none,circular drop shadow,text=white}",
|
66
|
-
resolution: 300 72}}
|
67
|
-
\node[initial,state] (A) {$q_a$};
|
68
|
-
\node[state] (B) [above right=of A] {$q_b$};
|
69
|
-
\node[state] (D) [below right=of A] {$q_d$};
|
70
|
-
\node[state] (C) [below right=of B] {$q_c$};
|
71
|
-
\node[state] (E) [below=of D] {$q_e$};
|
72
|
-
\path (A) edge node {0,1,L} (B)
|
73
|
-
edge node {1,1,R} (C)
|
74
|
-
(B) edge [loop above] node {1,1,L} (B)
|
75
|
-
edge node {0,1,L} (C)
|
76
|
-
(C) edge node {0,1,L} (D)
|
77
|
-
edge [bend left] node {1,0,R} (E)
|
78
|
-
(D) edge [loop below] node {1,1,R} (D)
|
79
|
-
edge node {0,1,R} (A)
|
80
|
-
(E) edge [bend left] node {1,0,R} (A);
|
81
|
-
{tikz}
|
82
|
-
</pre>
|
83
|
-
</td>
|
84
|
-
<td>
|
85
|
-
{tikz:: {path: chain.png, libraries: [arrows,automata,shadows,positioning],
|
86
|
-
opts: "->,>=stealth,shorten >=1pt,auto,node distance=2.8cm,on grid,semithick,
|
87
|
-
every state/.style={fill=red,draw=none,circular drop shadow,text=white}",
|
88
|
-
resolution: 300 72}}
|
89
|
-
\node[initial,state] (A) {$q_a$};
|
90
|
-
\node[state] (B) [above right=of A] {$q_b$};
|
91
|
-
\node[state] (D) [below right=of A] {$q_d$};
|
92
|
-
\node[state] (C) [below right=of B] {$q_c$};
|
93
|
-
\node[state] (E) [below=of D] {$q_e$};
|
94
|
-
\path (A) edge node {0,1,L} (B)
|
95
|
-
edge node {1,1,R} (C)
|
96
|
-
(B) edge [loop above] node {1,1,L} (B)
|
97
|
-
edge node {0,1,L} (C)
|
98
|
-
(C) edge node {0,1,L} (D)
|
99
|
-
edge [bend left] node {1,0,R} (E)
|
100
|
-
(D) edge [loop below] node {1,1,R} (D)
|
101
|
-
edge node {0,1,R} (A)
|
102
|
-
(E) edge [bend left] node {1,0,R} (A);
|
103
|
-
{tikz}
|
104
|
-
</td>
|
105
|
-
</tr>
|
106
|
-
|
107
|
-
<tr>
|
108
|
-
<td>
|
109
|
-
Not transparent and standard res
|
110
|
-
<pre>
|
111
|
-
\{tikz:: {path: mindmap.png, libraries: [mindmap]}}
|
112
|
-
\path[mindmap,concept color=black,text=white]
|
113
|
-
node[concept] {Computer Science}
|
114
|
-
[clockwise from=0]
|
115
|
-
child[concept color=red] { node[concept] {technical} }
|
116
|
-
child[concept color=orange] { node[concept] {theoretical} };
|
117
|
-
{tikz}
|
118
|
-
</pre>
|
119
|
-
</td>
|
120
|
-
<td>
|
121
|
-
{tikz:: {path: mindmap.png, libraries: [mindmap]}}
|
122
|
-
\path[mindmap,concept color=black,text=white]
|
123
|
-
node[concept] {Computer Science}
|
124
|
-
[clockwise from=0]
|
125
|
-
child[concept color=red] { node[concept] {technical} }
|
126
|
-
child[concept color=orange] { node[concept] {theoretical} };
|
127
|
-
{tikz}
|
128
|
-
</td>
|
129
|
-
</tr>
|
130
|
-
|
131
|
-
<tr>
|
132
|
-
<td>
|
133
|
-
Transparent and high res
|
134
|
-
<pre>
|
135
|
-
\{tikz:: {path: mindmap-low.png, libraries: [mindmap],
|
136
|
-
img_attr: {style: 'background:transparent'},
|
137
|
-
transparent: true, resolution: 300 72}}
|
138
|
-
\path[mindmap,concept color=black,text=white]
|
139
|
-
node[concept] {Computer Science}
|
140
|
-
[clockwise from=0]
|
141
|
-
child[concept color=red] { node[concept] {technical} }
|
142
|
-
child[concept color=orange] { node[concept] {theoretical} };
|
143
|
-
{tikz}
|
144
|
-
</pre>
|
145
|
-
</td>
|
146
|
-
<td>
|
147
|
-
{tikz:: {path: mindmap-high.png, libraries: [mindmap],
|
148
|
-
img_attr: {style: 'background:transparent'},
|
149
|
-
transparent: true, resolution: 300 72}}
|
150
|
-
\path[mindmap,concept color=black,text=white]
|
151
|
-
node[concept] {Computer Science}
|
152
|
-
[clockwise from=0]
|
153
|
-
child[concept color=red] { node[concept] {technical} }
|
154
|
-
child[concept color=orange] { node[concept] {theoretical} };
|
155
|
-
{tikz}
|
156
|
-
</td>
|
157
|
-
</tr>
|
158
|
-
|
159
|
-
</table>
|