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,411 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Navbar Configuration - Scriptorium</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
font-family: Arial, sans-serif;
|
8
|
+
margin: 0;
|
9
|
+
padding: 20px;
|
10
|
+
background: #f5f5f5;
|
11
|
+
}
|
12
|
+
.container {
|
13
|
+
max-width: 1200px;
|
14
|
+
margin: 0 auto;
|
15
|
+
background: white;
|
16
|
+
border-radius: 8px;
|
17
|
+
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
18
|
+
overflow: hidden;
|
19
|
+
}
|
20
|
+
.header {
|
21
|
+
background: #007cba;
|
22
|
+
color: white;
|
23
|
+
padding: 20px;
|
24
|
+
margin: 0;
|
25
|
+
}
|
26
|
+
.content {
|
27
|
+
padding: 20px;
|
28
|
+
}
|
29
|
+
.navbar-preview {
|
30
|
+
margin-bottom: 30px;
|
31
|
+
border: 2px solid #ddd;
|
32
|
+
border-radius: 8px;
|
33
|
+
overflow: hidden;
|
34
|
+
}
|
35
|
+
.navbar-preview h3 {
|
36
|
+
margin: 0;
|
37
|
+
padding: 15px;
|
38
|
+
background: #f8f9fa;
|
39
|
+
border-bottom: 1px solid #ddd;
|
40
|
+
}
|
41
|
+
.navbar-content {
|
42
|
+
padding: 20px;
|
43
|
+
background: #f8f9fa;
|
44
|
+
min-height: 200px;
|
45
|
+
}
|
46
|
+
.config-section {
|
47
|
+
margin-bottom: 30px;
|
48
|
+
}
|
49
|
+
.config-section h3 {
|
50
|
+
margin-top: 0;
|
51
|
+
color: #333;
|
52
|
+
}
|
53
|
+
.button-group {
|
54
|
+
margin-top: 20px;
|
55
|
+
}
|
56
|
+
.btn {
|
57
|
+
padding: 10px 20px;
|
58
|
+
border: none;
|
59
|
+
border-radius: 4px;
|
60
|
+
cursor: pointer;
|
61
|
+
font-size: 14px;
|
62
|
+
margin-right: 10px;
|
63
|
+
}
|
64
|
+
.btn-primary {
|
65
|
+
background: #007cba;
|
66
|
+
color: white;
|
67
|
+
}
|
68
|
+
.btn-secondary {
|
69
|
+
background: #6c757d;
|
70
|
+
color: white;
|
71
|
+
}
|
72
|
+
.btn:hover {
|
73
|
+
opacity: 0.8;
|
74
|
+
}
|
75
|
+
.message {
|
76
|
+
padding: 15px;
|
77
|
+
margin-bottom: 20px;
|
78
|
+
border-radius: 4px;
|
79
|
+
}
|
80
|
+
.message.success {
|
81
|
+
background: #d4edda;
|
82
|
+
color: #155724;
|
83
|
+
border: 1px solid #c3e6cb;
|
84
|
+
}
|
85
|
+
.message.error {
|
86
|
+
background: #f8d7da;
|
87
|
+
color: #721c24;
|
88
|
+
border: 1px solid #f5c6cb;
|
89
|
+
}
|
90
|
+
.preview-navbar {
|
91
|
+
display: flex;
|
92
|
+
gap: 20px;
|
93
|
+
flex-wrap: wrap;
|
94
|
+
}
|
95
|
+
.preview-parent-group {
|
96
|
+
display: flex;
|
97
|
+
flex-direction: column;
|
98
|
+
align-items: flex-start;
|
99
|
+
margin-right: 30px;
|
100
|
+
}
|
101
|
+
.preview-parent-label {
|
102
|
+
font-weight: bold;
|
103
|
+
color: #333;
|
104
|
+
margin-bottom: 10px;
|
105
|
+
}
|
106
|
+
.preview-children-list {
|
107
|
+
margin-left: 0;
|
108
|
+
}
|
109
|
+
.preview-child-item {
|
110
|
+
padding: 3px 0;
|
111
|
+
color: #666;
|
112
|
+
}
|
113
|
+
.preview-dropdown {
|
114
|
+
position: relative;
|
115
|
+
display: inline-block;
|
116
|
+
}
|
117
|
+
.preview-dropdown-label {
|
118
|
+
color: #007cba;
|
119
|
+
text-decoration: underline;
|
120
|
+
cursor: pointer;
|
121
|
+
display: inline-block;
|
122
|
+
margin-right: 20px;
|
123
|
+
}
|
124
|
+
.preview-dropdown-content {
|
125
|
+
display: none;
|
126
|
+
position: absolute;
|
127
|
+
background: white;
|
128
|
+
min-width: 160px;
|
129
|
+
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
|
130
|
+
border-radius: 4px;
|
131
|
+
z-index: 1;
|
132
|
+
border: 1px solid #ddd;
|
133
|
+
}
|
134
|
+
.preview-dropdown:hover .preview-dropdown-content {
|
135
|
+
display: block;
|
136
|
+
}
|
137
|
+
.preview-dropdown-label:hover {
|
138
|
+
background: #005a8b;
|
139
|
+
}
|
140
|
+
.preview-item {
|
141
|
+
padding: 8px 16px;
|
142
|
+
border-bottom: 1px solid #eee;
|
143
|
+
cursor: pointer;
|
144
|
+
}
|
145
|
+
.preview-item:last-child {
|
146
|
+
border-bottom: none;
|
147
|
+
}
|
148
|
+
.preview-item:hover {
|
149
|
+
background: #f8f9fa;
|
150
|
+
}
|
151
|
+
.preview-direct-item {
|
152
|
+
color: #007cba;
|
153
|
+
cursor: pointer;
|
154
|
+
display: inline-block;
|
155
|
+
margin-right: 20px;
|
156
|
+
}
|
157
|
+
.preview-direct-item:hover {
|
158
|
+
color: #005a8b;
|
159
|
+
}
|
160
|
+
.structure-tree {
|
161
|
+
background: #f8f9fa;
|
162
|
+
padding: 20px;
|
163
|
+
border-radius: 8px;
|
164
|
+
border: 1px solid #ddd;
|
165
|
+
}
|
166
|
+
.parent-item {
|
167
|
+
margin-bottom: 20px;
|
168
|
+
padding: 15px;
|
169
|
+
background: white;
|
170
|
+
border-radius: 6px;
|
171
|
+
border: 1px solid #e9ecef;
|
172
|
+
}
|
173
|
+
.parent-label {
|
174
|
+
font-weight: bold;
|
175
|
+
color: #333;
|
176
|
+
margin-bottom: 10px;
|
177
|
+
}
|
178
|
+
.children-list {
|
179
|
+
margin-left: 20px;
|
180
|
+
}
|
181
|
+
.child-item {
|
182
|
+
padding: 5px 0;
|
183
|
+
color: #666;
|
184
|
+
}
|
185
|
+
.top-level-link {
|
186
|
+
padding: 10px 0;
|
187
|
+
color: #007cba;
|
188
|
+
font-weight: bold;
|
189
|
+
}
|
190
|
+
.preview-parent-section {
|
191
|
+
margin-top: 20px;
|
192
|
+
padding: 15px;
|
193
|
+
background: white;
|
194
|
+
border-radius: 6px;
|
195
|
+
border: 1px solid #e9ecef;
|
196
|
+
}
|
197
|
+
.preview-parent-label {
|
198
|
+
font-weight: bold;
|
199
|
+
color: #333;
|
200
|
+
margin-bottom: 10px;
|
201
|
+
}
|
202
|
+
</style>
|
203
|
+
</head>
|
204
|
+
<body>
|
205
|
+
<div class="container">
|
206
|
+
<div class="header">
|
207
|
+
<h1>Navbar Configuration</h1>
|
208
|
+
<p>Configure the navigation menu for view: <strong><%= @current_view.name %></strong></p>
|
209
|
+
</div>
|
210
|
+
|
211
|
+
<div class="content">
|
212
|
+
<% if params[:message] %>
|
213
|
+
<div class="message success">
|
214
|
+
<%= params[:message] %>
|
215
|
+
</div>
|
216
|
+
<% end %>
|
217
|
+
|
218
|
+
<% if params[:error] %>
|
219
|
+
<div class="message error">
|
220
|
+
<%= params[:error] %>
|
221
|
+
</div>
|
222
|
+
<% end %>
|
223
|
+
|
224
|
+
<div class="navbar-preview">
|
225
|
+
<h3>Navbar Preview</h3>
|
226
|
+
<div class="navbar-content">
|
227
|
+
<% if @navbar_config.strip.empty? %>
|
228
|
+
<p style="color: #666; font-style: italic;">No navbar configuration yet. Add some menu items below to see a preview.</p>
|
229
|
+
<% else %>
|
230
|
+
<div class="preview-navbar">
|
231
|
+
<%
|
232
|
+
# Simple preview generation without real links
|
233
|
+
lines = @navbar_config.lines
|
234
|
+
current_parent = nil
|
235
|
+
lines.each do |line|
|
236
|
+
line = line.rstrip
|
237
|
+
next if line.empty? || line.start_with?('#')
|
238
|
+
|
239
|
+
if line.start_with?('=')
|
240
|
+
# Close previous parent if exists
|
241
|
+
if current_parent
|
242
|
+
%>
|
243
|
+
</div>
|
244
|
+
<button type="button" class="btn btn-secondary" style="margin-top: 10px; padding: 6px 12px; font-size: 12px;" onclick="showAddChildForm('<%= current_parent %>')">Add child</button>
|
245
|
+
<div id="add-child-form-<%= current_parent.gsub(/\s+/, '-') %>" style="display: none; margin-top: 10px; padding: 10px; background: #f8f9fa; border-radius: 4px;">
|
246
|
+
<form method="post" action="/navbar_config/add_child" style="display: flex; gap: 8px; align-items: end;">
|
247
|
+
<input type="hidden" name="parent" value="<%= current_parent %>">
|
248
|
+
<div>
|
249
|
+
<label style="font-size: 12px;">Label:</label>
|
250
|
+
<input type="text" name="label" required style="width: 120px; padding: 4px; border: 1px solid #ddd; border-radius: 4px; font-size: 12px;">
|
251
|
+
</div>
|
252
|
+
<div>
|
253
|
+
<label style="font-size: 12px;">Filename:</label>
|
254
|
+
<input type="text" name="filename" required style="width: 120px; padding: 4px; border: 1px solid #ddd; border-radius: 4px; font-size: 12px;">
|
255
|
+
</div>
|
256
|
+
<button type="submit" class="btn btn-primary" style="padding: 4px 8px; font-size: 12px;">Add</button>
|
257
|
+
<button type="button" class="btn btn-secondary" style="padding: 4px 8px; font-size: 12px;" onclick="hideAddChildForm('<%= current_parent.gsub(/\s+/, '-') %>')">Cancel</button>
|
258
|
+
</form>
|
259
|
+
</div>
|
260
|
+
</div>
|
261
|
+
<% end
|
262
|
+
label = line[1..-1].strip
|
263
|
+
current_parent = label
|
264
|
+
%>
|
265
|
+
<div class="preview-parent-group">
|
266
|
+
<div class="preview-parent-label"><%= label %></div>
|
267
|
+
<div class="preview-children-list">
|
268
|
+
<% elsif line.start_with?(' ') && current_parent
|
269
|
+
clean_line = line.strip
|
270
|
+
if clean_line.include?(' ')
|
271
|
+
parts = clean_line.split(/\s{2,}/, 2)
|
272
|
+
if parts.length >= 2
|
273
|
+
title, filename = parts[0], parts[1]
|
274
|
+
%>
|
275
|
+
<div class="preview-child-item"><%= title %></div>
|
276
|
+
<% end
|
277
|
+
end
|
278
|
+
elsif line.start_with?('-')
|
279
|
+
clean_line = line[1..-1].strip
|
280
|
+
if clean_line.include?(' ')
|
281
|
+
parts = clean_line.split(/\s{2,}/, 2)
|
282
|
+
if parts.length >= 2
|
283
|
+
title, filename = parts[0], parts[1]
|
284
|
+
%>
|
285
|
+
<div class="preview-direct-item"><%= title %></div>
|
286
|
+
<% end
|
287
|
+
end
|
288
|
+
end %>
|
289
|
+
<% end %>
|
290
|
+
<% if current_parent %>
|
291
|
+
</div>
|
292
|
+
<button type="button" class="btn btn-secondary" style="margin-top: 10px; padding: 6px 12px; font-size: 12px;" onclick="showAddChildForm('<%= current_parent %>')">Add child</button>
|
293
|
+
<div id="add-child-form-<%= current_parent.gsub(/\s+/, '-') %>" style="display: none; margin-top: 10px; padding: 10px; background: #f8f9fa; border-radius: 4px;">
|
294
|
+
<form method="post" action="/navbar_config/add_child" style="display: flex; gap: 8px; align-items: end;">
|
295
|
+
<input type="hidden" name="parent" value="<%= current_parent %>">
|
296
|
+
<div>
|
297
|
+
<label style="font-size: 12px;">Label:</label>
|
298
|
+
<input type="text" name="label" required style="width: 120px; padding: 4px; border: 1px solid #ddd; border-radius: 4px; font-size: 12px;">
|
299
|
+
</div>
|
300
|
+
<div>
|
301
|
+
<label style="font-size: 12px;">Filename:</label>
|
302
|
+
<input type="text" name="filename" required style="width: 120px; padding: 4px; border: 1px solid #ddd; border-radius: 4px; font-size: 12px;">
|
303
|
+
</div>
|
304
|
+
<button type="submit" class="btn btn-primary" style="padding: 4px 8px; font-size: 12px;">Add</button>
|
305
|
+
<button type="button" class="btn btn-secondary" style="padding: 4px 8px; font-size: 12px;" onclick="hideAddChildForm('<%= current_parent.gsub(/\s+/, '-') %>')">Cancel</button>
|
306
|
+
</form>
|
307
|
+
</div>
|
308
|
+
</div>
|
309
|
+
<% end %>
|
310
|
+
</div>
|
311
|
+
|
312
|
+
|
313
|
+
<% end %>
|
314
|
+
</div>
|
315
|
+
</div>
|
316
|
+
|
317
|
+
<div class="config-section">
|
318
|
+
<h3>Add Items</h3>
|
319
|
+
<form method="post" action="/navbar_config/add_item" style="display: flex; gap: 10px; align-items: end; margin-bottom: 20px;">
|
320
|
+
<div>
|
321
|
+
<label for="item_label">Label:</label>
|
322
|
+
<input type="text" name="label" id="item_label" required style="width: 200px; padding: 8px; border: 1px solid #ddd; border-radius: 4px;">
|
323
|
+
</div>
|
324
|
+
<div id="filename_field" style="display: none;">
|
325
|
+
<label for="item_filename">Filename:</label>
|
326
|
+
<input type="text" name="filename" id="item_filename" style="width: 150px; padding: 8px; border: 1px solid #ddd; border-radius: 4px;">
|
327
|
+
</div>
|
328
|
+
<button type="submit" name="action" value="link" class="btn btn-primary">Add as top-level link</button>
|
329
|
+
<button type="submit" name="action" value="parent" class="btn btn-primary">Add as parent</button>
|
330
|
+
</form>
|
331
|
+
</div>
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
<div class="config-section">
|
336
|
+
<h3>Current Configuration</h3>
|
337
|
+
<div style="display: flex; gap: 20px; align-items: flex-start;">
|
338
|
+
<div style="background: #f8f9fa; padding: 15px; border-radius: 4px; border: 1px solid #ddd; font-family: monospace; white-space: pre-wrap; font-size: 14px; max-height: 300px; overflow-y: auto; width: 300px;"><% if @navbar_config.empty? %>
|
339
|
+
<em>No configuration yet</em><% else %><%= @navbar_config %><% end %></div>
|
340
|
+
<div style="min-width: 200px;">
|
341
|
+
<div style="background: #e9ecef; padding: 10px; border-radius: 4px; font-size: 12px; margin-bottom: 10px;">
|
342
|
+
<strong>Format:</strong><br>
|
343
|
+
<code>-Label filename</code> (top-level link)<br>
|
344
|
+
<code>=Label</code> (parent menu)<br>
|
345
|
+
<code> Label filename</code> (child link)
|
346
|
+
</div>
|
347
|
+
<button type="button" class="btn btn-primary" onclick="showDirectEdit()">Edit Directly</button>
|
348
|
+
</div>
|
349
|
+
</div>
|
350
|
+
<div id="direct-edit-section" style="display: none; margin-top: 15px;">
|
351
|
+
<form method="post" action="/navbar_config/save_direct">
|
352
|
+
<textarea name="config" rows="10" style="width: 100%; font-family: monospace; padding: 10px; border: 1px solid #ddd; border-radius: 4px;"><%= @navbar_config %></textarea>
|
353
|
+
<div style="margin-top: 10px;">
|
354
|
+
<button type="submit" class="btn btn-primary">Save Changes</button>
|
355
|
+
<button type="button" class="btn btn-secondary" onclick="hideDirectEdit()">Cancel</button>
|
356
|
+
</div>
|
357
|
+
</form>
|
358
|
+
</div>
|
359
|
+
</div>
|
360
|
+
|
361
|
+
<div class="button-group">
|
362
|
+
<a href="/edit_pages" class="btn btn-primary">Edit Pages</a>
|
363
|
+
<a href="/" class="btn btn-secondary">Back to Dashboard</a>
|
364
|
+
</div>
|
365
|
+
</div>
|
366
|
+
</div>
|
367
|
+
|
368
|
+
<script>
|
369
|
+
// Show/hide filename field based on which button is clicked
|
370
|
+
document.querySelectorAll('button[name="action"]').forEach(button => {
|
371
|
+
button.addEventListener('mousedown', function(e) {
|
372
|
+
const filenameField = document.getElementById('filename_field');
|
373
|
+
const filenameInput = document.getElementById('item_filename');
|
374
|
+
|
375
|
+
if (this.value === 'link') {
|
376
|
+
filenameField.style.display = 'block';
|
377
|
+
filenameInput.required = true;
|
378
|
+
} else {
|
379
|
+
filenameField.style.display = 'none';
|
380
|
+
filenameInput.required = false;
|
381
|
+
}
|
382
|
+
});
|
383
|
+
});
|
384
|
+
|
385
|
+
// Show/hide add child form
|
386
|
+
function showAddChildForm(parent) {
|
387
|
+
const formId = 'add-child-form-' + parent.replace(/\s+/g, '-');
|
388
|
+
const form = document.getElementById(formId);
|
389
|
+
if (form) {
|
390
|
+
form.style.display = 'block';
|
391
|
+
}
|
392
|
+
}
|
393
|
+
|
394
|
+
function hideAddChildForm(parent) {
|
395
|
+
const formId = 'add-child-form-' + parent.replace(/\s+/g, '-');
|
396
|
+
const form = document.getElementById(formId);
|
397
|
+
if (form) {
|
398
|
+
form.style.display = 'none';
|
399
|
+
}
|
400
|
+
}
|
401
|
+
|
402
|
+
function showDirectEdit() {
|
403
|
+
document.getElementById('direct-edit-section').style.display = 'block';
|
404
|
+
}
|
405
|
+
|
406
|
+
function hideDirectEdit() {
|
407
|
+
document.getElementById('direct-edit-section').style.display = 'none';
|
408
|
+
}
|
409
|
+
</script>
|
410
|
+
</body>
|
411
|
+
</html>
|
@@ -0,0 +1,138 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Dashboard for <%= @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
|
+
}
|
14
|
+
.header {
|
15
|
+
padding: 0;
|
16
|
+
}
|
17
|
+
.header h1 {
|
18
|
+
margin: 0;
|
19
|
+
font-size: 28px;
|
20
|
+
line-height: 1;
|
21
|
+
}
|
22
|
+
.header p {
|
23
|
+
margin: 5px 0 0 0;
|
24
|
+
font-size: 16px;
|
25
|
+
opacity: 0.9;
|
26
|
+
}
|
27
|
+
.content {
|
28
|
+
padding: 20px;
|
29
|
+
}
|
30
|
+
.banner-section {
|
31
|
+
margin-bottom: 30px;
|
32
|
+
text-align: center;
|
33
|
+
}
|
34
|
+
.banner-section h2 {
|
35
|
+
margin-bottom: 15px;
|
36
|
+
color: #333;
|
37
|
+
}
|
38
|
+
.banner-display {
|
39
|
+
}
|
40
|
+
.actions-grid {
|
41
|
+
display: grid;
|
42
|
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
43
|
+
gap: 20px;
|
44
|
+
margin-bottom: 30px;
|
45
|
+
}
|
46
|
+
.action-card {
|
47
|
+
border: 1px solid #ddd;
|
48
|
+
border-radius: 6px;
|
49
|
+
padding: 20px;
|
50
|
+
text-align: center;
|
51
|
+
transition: all 0.2s;
|
52
|
+
}
|
53
|
+
.action-card:hover {
|
54
|
+
border-color: #007bff;
|
55
|
+
box-shadow: 0 2px 8px rgba(0,123,255,0.2);
|
56
|
+
}
|
57
|
+
.action-card h3 {
|
58
|
+
margin: 0 0 10px 0;
|
59
|
+
color: #333;
|
60
|
+
}
|
61
|
+
.action-card p {
|
62
|
+
margin: 0 0 15px 0;
|
63
|
+
color: #666;
|
64
|
+
font-size: 14px;
|
65
|
+
}
|
66
|
+
.btn {
|
67
|
+
display: inline-block;
|
68
|
+
padding: 6px 12px;
|
69
|
+
background: #007bff;
|
70
|
+
color: white;
|
71
|
+
text-decoration: none;
|
72
|
+
border-radius: 4px;
|
73
|
+
transition: background 0.2s;
|
74
|
+
font-size: 14px;
|
75
|
+
}
|
76
|
+
.btn:hover {
|
77
|
+
background: #0056b3;
|
78
|
+
}
|
79
|
+
.btn-secondary {
|
80
|
+
background: #6c757d;
|
81
|
+
}
|
82
|
+
.btn-secondary:hover {
|
83
|
+
background: #545b62;
|
84
|
+
}
|
85
|
+
.view-info {
|
86
|
+
background: #f8f9fa;
|
87
|
+
padding: 15px;
|
88
|
+
border-radius: 6px;
|
89
|
+
margin-bottom: 20px;
|
90
|
+
}
|
91
|
+
.view-info h3 {
|
92
|
+
margin: 0 0 10px 0;
|
93
|
+
color: #333;
|
94
|
+
}
|
95
|
+
.view-info p {
|
96
|
+
margin: 5px 0;
|
97
|
+
color: #666;
|
98
|
+
}
|
99
|
+
.config-buttons {
|
100
|
+
display: flex;
|
101
|
+
gap: 10px;
|
102
|
+
margin-bottom: 20px;
|
103
|
+
}
|
104
|
+
.button-group {
|
105
|
+
margin-top: 20px;
|
106
|
+
text-align: center;
|
107
|
+
}
|
108
|
+
</style>
|
109
|
+
</head>
|
110
|
+
<body>
|
111
|
+
<div class="container">
|
112
|
+
<div class="header">
|
113
|
+
<h1>Dashboard for <%= @current_view.name %></h1>
|
114
|
+
</div>
|
115
|
+
|
116
|
+
<div class="content">
|
117
|
+
<div class="banner-section">
|
118
|
+
<div class="banner-display">
|
119
|
+
<%= @banner_svg %>
|
120
|
+
</div>
|
121
|
+
</div>
|
122
|
+
|
123
|
+
<div class="config-buttons">
|
124
|
+
<a href="/banner_config" class="btn">Configure Banner</a>
|
125
|
+
<a href="/navbar_config" class="btn">Configure Navbar</a>
|
126
|
+
<a href="/edit_pages" class="btn">Edit Pages</a>
|
127
|
+
<a href="/asset_management" class="btn">Asset Management</a>
|
128
|
+
<a href="/" class="btn">Create Post</a>
|
129
|
+
<a href="/advanced_config" class="btn btn-secondary">Advanced Config</a>
|
130
|
+
</div>
|
131
|
+
|
132
|
+
<div class="button-group">
|
133
|
+
<a href="/" class="btn btn-secondary">Back to Main Dashboard</a>
|
134
|
+
</div>
|
135
|
+
</div>
|
136
|
+
</div>
|
137
|
+
</body>
|
138
|
+
</html>
|