scriptorium 0.0.3 → 0.6.1
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.
- checksums.yaml +4 -4
- data/README.lt3 +324 -0
- data/README.md +3155 -1
- data/assets/.DS_Store +0 -0
- data/assets/README.md +44 -0
- data/assets/back-icon.png +0 -0
- data/assets/icons/facebook.svg +1 -0
- data/assets/icons/github.svg +1 -0
- data/assets/icons/instagram.svg +1 -0
- data/assets/icons/reddit.svg +1 -0
- data/assets/icons/ui/.DS_Store +0 -0
- data/assets/icons/ui/back.png +0 -0
- data/assets/icons/ui/copy.png +0 -0
- data/assets/icons/ui/down.png +0 -0
- data/assets/icons/ui/end.png +0 -0
- data/assets/icons/ui/exit.png +0 -0
- data/assets/icons/ui/foo +10 -0
- data/assets/icons/ui/home.png +0 -0
- data/assets/icons/ui/left.png +0 -0
- data/assets/icons/ui/next.png +0 -0
- data/assets/icons/ui/right.png +0 -0
- data/assets/icons/ui/start.png +0 -0
- data/assets/icons/ui/up.png +0 -0
- data/assets/icons/x.svg +1 -0
- data/assets/icons/youtube.svg +1 -0
- data/assets/samples/placeholder.svg +9 -0
- data/assets/themes/standard/favicon.svg +6 -0
- data/bin/scriptorium +1511 -0
- data/doc/README.txt +6 -0
- data/doc/anti-amnesia/20250727-054000-scriptorium-overview.md +95 -0
- data/doc/anti-amnesia/20250727-060000-api-design-tui-planning.md +34 -0
- data/doc/anti-amnesia/20250727-061000-runeblog-tui-analysis.md +50 -0
- data/doc/anti-amnesia/20250727-123000-anti-amnesia-conventions.md +31 -0
- data/doc/anti-amnesia/20250727-154000-livetext-plugin-file-stats.md +73 -0
- data/doc/anti-amnesia/20250727-172600-cursor-rbenv-ruby-version-mystery.md +64 -0
- data/doc/anti-amnesia/20250727-172600-unified-minitest-framework.md +70 -0
- data/doc/anti-amnesia/20250727-172900-ai-cognitive-assessment-capabilities.md +40 -0
- data/doc/anti-amnesia/20250727-173000-widget-testing-achievement.md +110 -0
- data/doc/anti-amnesia/20250727-180000-post-id-num-refactoring.md +73 -0
- data/doc/anti-amnesia/20250728-124243-aaa-syntax-clarification.md +46 -0
- data/doc/anti-amnesia/20250728-124421-conversation-summary-concise.md +124 -0
- data/doc/anti-amnesia/20250729-190000-scriptorium-tui-testing-complete.md +46 -0
- data/doc/anti-amnesia/20250729-200000-scriptorium-tui-testing-edit-file-workflow.md +97 -0
- data/doc/anti-amnesia/20250729-210000-reddit-autopost-integration-complete.md +158 -0
- data/doc/anti-amnesia/20250729-211500-dependency-management-system.md +211 -0
- data/doc/anti-amnesia/20250729-213000-python-virtual-environment-setup.md +141 -0
- data/doc/anti-amnesia/20250729-214500-theme-management-commands.md +211 -0
- data/doc/anti-amnesia/20250729-215000-version-update-to-0.6.0.md +134 -0
- data/doc/anti-amnesia/20250729-220000-user-guide-complete.md +41 -0
- data/doc/anti-amnesia/20250804-190500-cognitive-loop-bug.md +45 -0
- data/doc/anti-amnesia/20250804-190700-anti-amnesia-timestamping-fix.md +30 -0
- data/doc/anti-amnesia/20250804-213700-publishing-test-fix.md +49 -0
- data/doc/anti-amnesia/20250804-214400-additional-test-fixes.md +46 -0
- data/doc/anti-amnesia/20250804-220000-asset-function-logic-clarification.md +41 -0
- data/doc/anti-amnesia/20250806-202032-asset-function-logic-clarification.md +41 -0
- data/doc/anti-amnesia/20250807-213025.md +116 -0
- data/doc/anti-amnesia/20250813-082428-syntax-highlighting-and-navigation-improvements.md +256 -0
- data/doc/banner_svg_config.md +114 -0
- data/doc/contrib.lt3 +8 -0
- data/doc/dependencies.md +281 -0
- data/doc/hacker.lt3 +5 -0
- data/doc/reddit_credentials_template.json +8 -0
- data/doc/reddit_integration.md +207 -0
- data/doc/user.lt3 +38 -0
- data/doc/user_guide_section_1.md +137 -0
- data/doc/user_guide_section_10.md +515 -0
- data/doc/user_guide_section_11.md +708 -0
- data/doc/user_guide_section_2.md +233 -0
- data/doc/user_guide_section_3.md +5 -0
- data/doc/user_guide_section_4.md +221 -0
- data/doc/user_guide_section_5.md +243 -0
- data/doc/user_guide_section_6.md +147 -0
- data/doc/user_guide_section_7.md +311 -0
- data/doc/user_guide_section_8.md +224 -0
- data/doc/user_guide_section_9.md +375 -0
- data/doc/userdoc-toc.txt +88 -0
- data/lib/rouge/lexers/livetext.rb +74 -0
- data/lib/scriptorium/api.rb +640 -0
- data/lib/scriptorium/banner_svg.rb +742 -0
- data/lib/scriptorium/contract.rb +33 -0
- data/lib/scriptorium/exceptions.rb +170 -1
- data/lib/scriptorium/helpers.rb +475 -0
- data/lib/scriptorium/post.rb +195 -0
- data/lib/scriptorium/reddit.rb +83 -0
- data/lib/scriptorium/repo.rb +624 -0
- data/lib/scriptorium/standard_files.rb +515 -0
- data/lib/scriptorium/syntax_highlighter.rb +234 -0
- data/lib/scriptorium/theme.rb +179 -0
- data/lib/scriptorium/version.rb +2 -2
- data/lib/scriptorium/view.rb +976 -0
- data/lib/scriptorium/widgets/featured_posts.rb +149 -0
- data/lib/scriptorium/widgets/links.rb +112 -0
- data/lib/scriptorium/widgets/pages.rb +133 -0
- data/lib/scriptorium/widgets/widget.rb +133 -0
- data/lib/scriptorium.rb +21 -40
- data/lib/skeleton.rb +8 -2
- data/scriptorium.gemspec +15 -4
- data/test/README.md +69 -0
- data/test/all +43 -0
- data/test/api_demo.rb +99 -0
- data/test/assets/imagenotfound.jpg +0 -0
- data/test/assets/images/.DS_Store +0 -0
- data/test/assets/images/README.md +27 -0
- data/test/assets/images/odd_aspect.png +0 -0
- data/test/assets/images/perfect.png +0 -0
- data/test/assets/images/small.png +0 -0
- data/test/assets/images/tall.png +0 -0
- data/test/assets/images/very_tall.png +0 -0
- data/test/assets/images/very_wide.png +0 -0
- data/test/assets/images/wide.png +0 -0
- data/test/assets/testbanner.jpg +0 -0
- data/test/banner_svg/simple_helpers.rb +13 -0
- data/test/banner_svg/unit.rb +768 -0
- data/test/ed_test.rb +204 -0
- data/test/integration/cursor_banner_combinations.rb +193 -0
- data/test/integration/cursor_banner_features.rb +374 -0
- data/test/integration/integration_test.rb +326 -0
- data/test/livetext_plugin_test.rb +229 -0
- data/test/manual/asset_mgmt.rb +67 -0
- data/test/manual/banner-tests/config.txt +3 -0
- data/test/manual/banner-tests/index.html +45 -0
- data/test/manual/banner-tests/test01.html +58 -0
- data/test/manual/banner-tests/test02.html +58 -0
- data/test/manual/banner-tests/test03.html +58 -0
- data/test/manual/banner-tests/test04.html +65 -0
- data/test/manual/banner-tests/test05.html +65 -0
- data/test/manual/banner-tests/test06.html +65 -0
- data/test/manual/banner-tests/test07.html +65 -0
- data/test/manual/banner-tests/test08.html +59 -0
- data/test/manual/banner-tests/test09.html +59 -0
- data/test/manual/banner-tests/test10.html +59 -0
- data/test/manual/banner-tests/test11.html +59 -0
- data/test/manual/banner-tests/test12.html +59 -0
- data/test/manual/banner-tests/test13.html +59 -0
- data/test/manual/banner-tests/test14.html +59 -0
- data/test/manual/banner-tests/test15.html +58 -0
- data/test/manual/banner-tests/test16.html +58 -0
- data/test/manual/banner-tests/test17.html +58 -0
- data/test/manual/banner-tests/test18.html +68 -0
- data/test/manual/banner-tests/test19.html +68 -0
- data/test/manual/banner-tests/test20.html +68 -0
- data/test/manual/banner-tests/test21.html +68 -0
- data/test/manual/banner-tests/test22.html +68 -0
- data/test/manual/banner-tests/test23.html +68 -0
- data/test/manual/banner-tests/test24.html +68 -0
- data/test/manual/banner-tests/test25.html +67 -0
- data/test/manual/banner_environment.rb +192 -0
- data/test/manual/deploy_symlink_demo.rb +142 -0
- data/test/manual/environment.rb +67 -0
- data/test/manual/make_banner.rb +153 -0
- data/test/manual/sample_banner_config.txt +12 -0
- data/test/manual/symlink_demo.rb +117 -0
- data/test/manual/test1.rb +47 -0
- data/test/manual/test2.rb +12 -0
- data/test/manual/test3.rb +38 -0
- data/test/manual/test4.rb +40 -0
- data/test/manual/test5.rb +24 -0
- data/test/manual/test6.rb +73 -0
- data/test/manual/test_banner_combinations.rb +120 -0
- data/test/manual/test_banner_features.rb +306 -0
- data/test/manual/test_banner_from_file.rb +150 -0
- data/test/manual/test_banner_in_header.rb +35 -0
- data/test/manual/test_code_highlighting.rb +68 -0
- data/test/manual/test_complex_header.rb +74 -0
- data/test/manual/test_empty_header.rb +32 -0
- data/test/manual/test_radial_custom.rb +58 -0
- data/test/manual/test_radial_large_radius.rb +52 -0
- data/test/manual/test_svg_debug.rb +47 -0
- data/test/manual/test_syntax_highlighting.rb +147 -0
- data/test/pages-demo/config/currentview.txt +1 -0
- data/test/pages-demo/views/demo/config/bootstrap_css.txt +5 -0
- data/test/pages-demo/views/demo/config/bootstrap_js.txt +4 -0
- data/test/pages-demo/views/demo/config/common.js +57 -0
- data/test/pages-demo/views/demo/config/footer.txt +1 -0
- data/test/pages-demo/views/demo/config/global-head.txt +8 -0
- data/test/pages-demo/views/demo/config/header.txt +1 -0
- data/test/pages-demo/views/demo/config/layout.txt +1 -0
- data/test/pages-demo/views/demo/config/left.txt +1 -0
- data/test/pages-demo/views/demo/config/main.txt +1 -0
- data/test/pages-demo/views/demo/config/right.txt +1 -0
- data/test/pages-demo/views/demo/config.txt +3 -0
- data/test/pages-demo/views/demo/output/panes/footer.html +1 -0
- data/test/pages-demo/views/demo/output/panes/header.html +1 -0
- data/test/pages-demo/views/demo/output/panes/left.html +1 -0
- data/test/pages-demo/views/demo/output/panes/main.html +1 -0
- data/test/pages-demo/views/demo/output/panes/right.html +1 -0
- data/test/rubytext/rubytext_comprehensive_test.rb +307 -0
- data/test/rubytext/rubytext_demo_test.rb +42 -0
- data/test/rubytext/rubytext_testing_guide.md +277 -0
- data/test/run_automated_tests.rb +45 -0
- data/test/scriptorium-TEST-1754622690-146/config/bootstrap_css.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/config/bootstrap_js.txt +4 -0
- data/test/scriptorium-TEST-1754622690-146/config/common.js +57 -0
- data/test/scriptorium-TEST-1754622690-146/config/currentview.txt +1 -0
- data/test/scriptorium-TEST-1754622690-146/config/global-head.txt +9 -0
- data/test/scriptorium-TEST-1754622690-146/config/last_post_num.txt +1 -0
- data/test/scriptorium-TEST-1754622690-146/config/os_helpers.rb +4 -0
- data/test/scriptorium-TEST-1754622690-146/config/widgets.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/posts/0001/meta.txt +8 -0
- data/test/scriptorium-TEST-1754622690-146/posts/0001/source.lt3 +6 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/README.txt +1 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/config.txt +1 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/initial/post.lt3 +12 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/footer.txt +2 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/header.txt +4 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/left.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/main.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/right.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/gen/text.css +1 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/layout.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/templates/index.lt3 +1 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/templates/index_entry.lt3 +14 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/templates/post.lt3 +13 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/templates/widget.lt3 +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/bootstrap_css.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/bootstrap_js.txt +4 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/common.js +57 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/deploy.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/footer.txt +2 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/global-head.txt +9 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/header.txt +4 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/layout.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/left.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/main.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/reddit.txt +10 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/right.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/social.txt +7 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/status.txt +7 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/footer.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/header.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/left.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/main.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/right.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/footer.html +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/header.html +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/left.html +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/main.html +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/right.html +1 -0
- data/test/staging/.DS_Store +0 -0
- data/test/syntax_highlighting_test.lt3 +124 -0
- data/test/test_helpers.rb +230 -0
- data/test/tui_editor_integration_test.rb +296 -0
- data/test/tui_integration_test.rb +637 -0
- data/test/unit/api.rb +1056 -0
- data/test/unit/asset_management.rb +245 -0
- data/test/unit/clipboard_test.rb +60 -0
- data/test/unit/contract_test.rb +91 -0
- data/test/unit/core.rb +857 -0
- data/test/unit/deploy_test.rb +187 -0
- data/test/unit/gem_asset_management.rb +189 -0
- data/test/unit/livetext_basic.rb +69 -0
- data/test/unit/livetext_compatibility.rb +89 -0
- data/test/unit/post.rb +244 -0
- data/test/unit/read_commented_file_test.rb +276 -0
- data/test/unit/reddit_test.rb +235 -0
- data/test/unit/repo.rb +548 -0
- data/test/unit/social_test.rb +369 -0
- data/test/unit/symlink_test.rb +213 -0
- data/test/unit/view.rb +431 -0
- data/test/unit/widgets.rb +669 -0
- data/test/wizard_test.rb +123 -0
- data/ui/README.md +67 -0
- data/ui/common/lib/ui_common.rb +8 -0
- data/ui/rubytext/README.md +191 -0
- data/ui/rubytext/bin/scriptorium-rubytext +402 -0
- data/ui/rubytext/lib/rubytext_ui.rb +300 -0
- data/ui/tui/bin/scriptorium +1420 -0
- data/ui/tui/test/tui_test.rb +23 -0
- data/ui/web/app/app.rb +1378 -0
- data/ui/web/app/error_helpers.rb +150 -0
- data/ui/web/app/views/advanced_config.erb +190 -0
- data/ui/web/app/views/asset_management.erb +589 -0
- data/ui/web/app/views/banner_config.erb +200 -0
- data/ui/web/app/views/configure_view.erb +401 -0
- data/ui/web/app/views/dashboard.erb +162 -0
- data/ui/web/app/views/deploy_config.erb +146 -0
- data/ui/web/app/views/edit_pages.erb +195 -0
- data/ui/web/app/views/edit_post.erb +54 -0
- data/ui/web/app/views/error_page.erb +29 -0
- data/ui/web/app/views/header_config.erb +155 -0
- data/ui/web/app/views/layout_config.erb +147 -0
- data/ui/web/app/views/navbar_config.erb +411 -0
- data/ui/web/app/views/view_dashboard.erb +138 -0
- data/ui/web/bin/scriptorium-web +153 -0
- data/ui/web/test/web_basic_test.rb +38 -0
- data/ui/web/test_navbar.txt +7 -0
- data/ui/web/tmp/web_server.log +5 -0
- data/ui/web/tmp/web_server.pid +1 -0
- metadata +359 -7
- data/lib/scriptorium/engine.rb +0 -22
- data/test/engine/unit.rb +0 -44
@@ -0,0 +1,155 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Configure Header - <%= @current_view.name %> - Scriptorium</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
font-family: Arial, sans-serif;
|
8
|
+
margin: 0;
|
9
|
+
padding: 20px;
|
10
|
+
background-color: #f5f5f5;
|
11
|
+
}
|
12
|
+
.container {
|
13
|
+
max-width: 600px;
|
14
|
+
margin: 0 auto;
|
15
|
+
background: white;
|
16
|
+
border-radius: 8px;
|
17
|
+
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
18
|
+
overflow: hidden;
|
19
|
+
}
|
20
|
+
.header {
|
21
|
+
background: #007bff;
|
22
|
+
color: white;
|
23
|
+
padding: 20px;
|
24
|
+
text-align: center;
|
25
|
+
}
|
26
|
+
.header h1 {
|
27
|
+
margin: 0;
|
28
|
+
font-size: 24px;
|
29
|
+
}
|
30
|
+
.content {
|
31
|
+
padding: 30px;
|
32
|
+
}
|
33
|
+
.form-group {
|
34
|
+
margin-bottom: 25px;
|
35
|
+
}
|
36
|
+
.form-group label {
|
37
|
+
display: block;
|
38
|
+
margin-bottom: 8px;
|
39
|
+
font-weight: bold;
|
40
|
+
color: #333;
|
41
|
+
}
|
42
|
+
.radio-group {
|
43
|
+
display: flex;
|
44
|
+
gap: 20px;
|
45
|
+
}
|
46
|
+
.radio-option {
|
47
|
+
display: flex;
|
48
|
+
align-items: center;
|
49
|
+
gap: 8px;
|
50
|
+
}
|
51
|
+
.radio-option input[type="radio"] {
|
52
|
+
margin: 0;
|
53
|
+
}
|
54
|
+
.checkbox-option {
|
55
|
+
display: flex;
|
56
|
+
align-items: center;
|
57
|
+
gap: 8px;
|
58
|
+
}
|
59
|
+
.checkbox-option input[type="checkbox"] {
|
60
|
+
margin: 0;
|
61
|
+
}
|
62
|
+
.description {
|
63
|
+
margin-top: 5px;
|
64
|
+
font-size: 14px;
|
65
|
+
color: #666;
|
66
|
+
}
|
67
|
+
.btn {
|
68
|
+
display: inline-block;
|
69
|
+
padding: 10px 20px;
|
70
|
+
background: #007bff;
|
71
|
+
color: white;
|
72
|
+
text-decoration: none;
|
73
|
+
border-radius: 4px;
|
74
|
+
border: none;
|
75
|
+
font-size: 16px;
|
76
|
+
cursor: pointer;
|
77
|
+
transition: background 0.2s;
|
78
|
+
}
|
79
|
+
.btn:hover {
|
80
|
+
background: #0056b3;
|
81
|
+
}
|
82
|
+
.btn-secondary {
|
83
|
+
background: #6c757d;
|
84
|
+
}
|
85
|
+
.btn-secondary:hover {
|
86
|
+
background: #545b62;
|
87
|
+
}
|
88
|
+
.button-group {
|
89
|
+
display: flex;
|
90
|
+
gap: 10px;
|
91
|
+
justify-content: center;
|
92
|
+
margin-top: 30px;
|
93
|
+
}
|
94
|
+
.current-config {
|
95
|
+
background: #f8f9fa;
|
96
|
+
padding: 15px;
|
97
|
+
border-radius: 4px;
|
98
|
+
margin-bottom: 20px;
|
99
|
+
font-family: monospace;
|
100
|
+
font-size: 14px;
|
101
|
+
}
|
102
|
+
</style>
|
103
|
+
</head>
|
104
|
+
<body>
|
105
|
+
<div class="container">
|
106
|
+
<div class="header">
|
107
|
+
<h1>Configure Header</h1>
|
108
|
+
<p>Set up the header structure for <%= @current_view.name %></p>
|
109
|
+
</div>
|
110
|
+
|
111
|
+
<div class="content">
|
112
|
+
<% if @current_config && !@current_config.empty? %>
|
113
|
+
<div class="current-config">
|
114
|
+
<strong>Current configuration:</strong><br>
|
115
|
+
<%= @current_config.gsub("\n", "<br>") %>
|
116
|
+
</div>
|
117
|
+
<% end %>
|
118
|
+
|
119
|
+
<form method="post" action="/header_config">
|
120
|
+
<div class="form-group">
|
121
|
+
<label>Banner Type:</label>
|
122
|
+
<div class="radio-group">
|
123
|
+
<div class="radio-option">
|
124
|
+
<input type="radio" id="banner_svg" name="banner_type" value="svg" <%= 'checked' if @banner_type == 'svg' %>>
|
125
|
+
<label for="banner_svg">SVG Banner</label>
|
126
|
+
</div>
|
127
|
+
<div class="radio-option">
|
128
|
+
<input type="radio" id="banner_image" name="banner_type" value="imgfile" <%= 'checked' if @banner_type == 'image' %>>
|
129
|
+
<label for="banner_image">Image File</label>
|
130
|
+
</div>
|
131
|
+
</div>
|
132
|
+
<div class="description">
|
133
|
+
Choose between a customizable SVG banner or a static image file.
|
134
|
+
</div>
|
135
|
+
</div>
|
136
|
+
|
137
|
+
<div class="form-group">
|
138
|
+
<div class="checkbox-option">
|
139
|
+
<input type="checkbox" id="navbar_enabled" name="navbar_enabled" value="1" <%= 'checked' if @navbar_enabled %>>
|
140
|
+
<label for="navbar_enabled">Include navigation menu</label>
|
141
|
+
</div>
|
142
|
+
<div class="description">
|
143
|
+
Enable this to show a navigation menu in the header.
|
144
|
+
</div>
|
145
|
+
</div>
|
146
|
+
|
147
|
+
<div class="button-group">
|
148
|
+
<button type="submit" class="btn">Save Configuration</button>
|
149
|
+
<a href="/advanced_config" class="btn btn-secondary">Cancel</a>
|
150
|
+
</div>
|
151
|
+
</form>
|
152
|
+
</div>
|
153
|
+
</div>
|
154
|
+
</body>
|
155
|
+
</html>
|
@@ -0,0 +1,147 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Edit Layout - <%= @current_view.name %> - Scriptorium</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
font-family: Arial, sans-serif;
|
8
|
+
margin: 0;
|
9
|
+
padding: 20px;
|
10
|
+
background-color: #f5f5f5;
|
11
|
+
}
|
12
|
+
.container {
|
13
|
+
max-width: 800px;
|
14
|
+
margin: 0 auto;
|
15
|
+
background: white;
|
16
|
+
border-radius: 8px;
|
17
|
+
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
18
|
+
overflow: hidden;
|
19
|
+
}
|
20
|
+
.header {
|
21
|
+
background: #007bff;
|
22
|
+
color: white;
|
23
|
+
padding: 20px;
|
24
|
+
text-align: center;
|
25
|
+
}
|
26
|
+
.header h1 {
|
27
|
+
margin: 0;
|
28
|
+
font-size: 24px;
|
29
|
+
}
|
30
|
+
.content {
|
31
|
+
padding: 30px;
|
32
|
+
}
|
33
|
+
.form-group {
|
34
|
+
margin-bottom: 25px;
|
35
|
+
}
|
36
|
+
.form-group label {
|
37
|
+
display: block;
|
38
|
+
margin-bottom: 8px;
|
39
|
+
font-weight: bold;
|
40
|
+
color: #333;
|
41
|
+
}
|
42
|
+
.form-group textarea {
|
43
|
+
width: 100%;
|
44
|
+
height: 150px;
|
45
|
+
padding: 12px;
|
46
|
+
border: 1px solid #ddd;
|
47
|
+
border-radius: 4px;
|
48
|
+
font-family: monospace;
|
49
|
+
font-size: 14px;
|
50
|
+
line-height: 1.4;
|
51
|
+
resize: vertical;
|
52
|
+
}
|
53
|
+
.form-group textarea:focus {
|
54
|
+
outline: none;
|
55
|
+
border-color: #007bff;
|
56
|
+
box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
|
57
|
+
}
|
58
|
+
.help-text {
|
59
|
+
background: #f8f9fa;
|
60
|
+
padding: 15px;
|
61
|
+
border-radius: 4px;
|
62
|
+
margin-bottom: 20px;
|
63
|
+
font-size: 14px;
|
64
|
+
line-height: 1.5;
|
65
|
+
}
|
66
|
+
.help-text h3 {
|
67
|
+
margin: 0 0 10px 0;
|
68
|
+
color: #333;
|
69
|
+
font-size: 16px;
|
70
|
+
}
|
71
|
+
.help-text pre {
|
72
|
+
background: #e9ecef;
|
73
|
+
padding: 10px;
|
74
|
+
border-radius: 4px;
|
75
|
+
margin: 10px 0;
|
76
|
+
font-size: 12px;
|
77
|
+
overflow-x: auto;
|
78
|
+
}
|
79
|
+
.btn {
|
80
|
+
display: inline-block;
|
81
|
+
padding: 10px 20px;
|
82
|
+
background: #007bff;
|
83
|
+
color: white;
|
84
|
+
text-decoration: none;
|
85
|
+
border-radius: 4px;
|
86
|
+
border: none;
|
87
|
+
font-size: 16px;
|
88
|
+
cursor: pointer;
|
89
|
+
transition: background 0.2s;
|
90
|
+
}
|
91
|
+
.btn:hover {
|
92
|
+
background: #0056b3;
|
93
|
+
}
|
94
|
+
.btn-secondary {
|
95
|
+
background: #6c757d;
|
96
|
+
}
|
97
|
+
.btn-secondary:hover {
|
98
|
+
background: #545b62;
|
99
|
+
}
|
100
|
+
.button-group {
|
101
|
+
display: flex;
|
102
|
+
gap: 10px;
|
103
|
+
justify-content: center;
|
104
|
+
margin-top: 30px;
|
105
|
+
}
|
106
|
+
</style>
|
107
|
+
</head>
|
108
|
+
<body>
|
109
|
+
<div class="container">
|
110
|
+
<div class="header">
|
111
|
+
<h1>Edit Layout</h1>
|
112
|
+
<p>Configure the overall page layout for <%= @current_view.name %></p>
|
113
|
+
</div>
|
114
|
+
|
115
|
+
<div class="content">
|
116
|
+
<div class="help-text">
|
117
|
+
<h3>Layout Configuration Format</h3>
|
118
|
+
<p>Define the structure of your page layout. Each line specifies a section and optional width:</p>
|
119
|
+
<pre>header # Top section (banner, title, navbar, etc.)
|
120
|
+
left 15% # Left sidebar, 15% width
|
121
|
+
main # Main content area (posts, etc.)
|
122
|
+
right 15% # Right sidebar, 15% width
|
123
|
+
footer # Bottom section (copyright, links, etc.)</pre>
|
124
|
+
<p><strong>Available sections:</strong> header, left, main, right, footer</p>
|
125
|
+
<p><strong>Width options:</strong> percentage (e.g., 15%) or omit for auto-sizing</p>
|
126
|
+
<p><em>Note: The main section will automatically take up the remaining space.</em></p>
|
127
|
+
</div>
|
128
|
+
|
129
|
+
<form method="post" action="/layout_config">
|
130
|
+
<div class="form-group">
|
131
|
+
<label for="layout_config">Layout Configuration:</label>
|
132
|
+
<textarea id="layout_config" name="layout_config" placeholder="header # Top (banner? title? navbar? etc.)
|
133
|
+
left 15% # Left sidebar, 15% width
|
134
|
+
main # Main (center) container - posts/etc.
|
135
|
+
right 15% # Right sidebar, 15% width
|
136
|
+
footer # Footer (copyright? mail? social media? etc.)"><%= @layout_config %></textarea>
|
137
|
+
</div>
|
138
|
+
|
139
|
+
<div class="button-group">
|
140
|
+
<button type="submit" class="btn">Save Configuration</button>
|
141
|
+
<a href="/advanced_config" class="btn btn-secondary">Cancel</a>
|
142
|
+
</div>
|
143
|
+
</form>
|
144
|
+
</div>
|
145
|
+
</div>
|
146
|
+
</body>
|
147
|
+
</html>
|