diff --git a/Gemfile b/Gemfile index e8a7006..72359f4 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,5 @@ source 'https://rubygems.org' -gem 'jekyll' +gem 'jekyll', '~> 4.3' +gem 'webrick', '~> 1.7' +gem 'liquid', '~> 4.0.4' diff --git a/Gemfile.lock b/Gemfile.lock index 7fe3c46..2d312ff 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,67 +1,83 @@ GEM remote: https://rubygems.org/ specs: - addressable (2.7.0) - public_suffix (>= 2.0.2, < 5.0) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) + base64 (0.3.0) + bigdecimal (3.3.1) colorator (1.1.0) - concurrent-ruby (1.1.7) - em-websocket (0.5.2) + concurrent-ruby (1.3.5) + csv (3.3.5) + em-websocket (0.5.3) eventmachine (>= 0.12.9) - http_parser.rb (~> 0.6.0) + http_parser.rb (~> 0) eventmachine (1.2.7) - ffi (1.13.1) + ffi (1.17.2) forwardable-extended (2.6.0) - http_parser.rb (0.6.0) - i18n (1.8.5) + google-protobuf (4.33.1) + bigdecimal + rake (>= 13) + http_parser.rb (0.8.0) + i18n (1.14.7) concurrent-ruby (~> 1.0) - jekyll (4.2.0) + jekyll (4.4.1) addressable (~> 2.4) + base64 (~> 0.2) colorator (~> 1.0) + csv (~> 3.0) em-websocket (~> 0.5) i18n (~> 1.0) - jekyll-sass-converter (~> 2.0) + jekyll-sass-converter (>= 2.0, < 4.0) jekyll-watch (~> 2.0) - kramdown (~> 2.3) + json (~> 2.6) + kramdown (~> 2.3, >= 2.3.1) kramdown-parser-gfm (~> 1.0) liquid (~> 4.0) - mercenary (~> 0.4.0) + mercenary (~> 0.3, >= 0.3.6) pathutil (~> 0.9) - rouge (~> 3.0) + rouge (>= 3.0, < 5.0) safe_yaml (~> 1.0) - terminal-table (~> 2.0) - jekyll-sass-converter (2.1.0) - sassc (> 2.0.1, < 3.0) + terminal-table (>= 1.8, < 4.0) + webrick (~> 1.7) + jekyll-sass-converter (3.1.0) + sass-embedded (~> 1.75) jekyll-watch (2.2.1) listen (~> 3.0) - kramdown (2.3.0) - rexml + json (2.16.0) + kramdown (2.5.1) + rexml (>= 3.3.9) kramdown-parser-gfm (1.1.0) kramdown (~> 2.0) - liquid (4.0.3) - listen (3.3.3) + liquid (4.0.4) + listen (3.9.0) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.4.0) pathutil (0.16.2) forwardable-extended (~> 2.6) - public_suffix (4.0.6) - rb-fsevent (0.10.4) - rb-inotify (0.10.1) + public_suffix (6.0.2) + rake (13.3.1) + rb-fsevent (0.11.2) + rb-inotify (0.11.1) ffi (~> 1.0) - rexml (3.2.4) - rouge (3.26.0) + rexml (3.4.4) + rouge (4.6.1) safe_yaml (1.0.5) - sassc (2.4.0) - ffi (~> 1.9) - terminal-table (2.0.0) - unicode-display_width (~> 1.1, >= 1.1.1) - unicode-display_width (1.7.0) + sass-embedded (1.94.0) + google-protobuf (~> 4.31) + rake (>= 13) + terminal-table (3.0.2) + unicode-display_width (>= 1.1.1, < 3) + unicode-display_width (2.6.0) + webrick (1.9.1) PLATFORMS ruby DEPENDENCIES - jekyll + jekyll (~> 4.3) + liquid (~> 4.0.4) + webrick (~> 1.7) BUNDLED WITH 2.1.2 diff --git a/_includes/bin_table.html b/_includes/bin_table.html index d29bcef..116ba31 100644 --- a/_includes/bin_table.html +++ b/_includes/bin_table.html @@ -3,8 +3,241 @@ color: #ff0000 !important; border-color: #ff0000 !important; } +.param-inputs { + background: #f5f5f5; + padding: 15px; + margin-bottom: 20px; + border-radius: 5px; + border: 1px solid #ddd; +} +.param-inputs h3 { + margin-top: 0; + margin-bottom: 10px; + color: #333; +} +.param-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 10px; +} +.param-field { + display: flex; + flex-direction: column; +} +.param-field label { + font-size: 12px; + font-weight: bold; + margin-bottom: 3px; + color: #555; +} +.param-field input, .param-field select { + padding: 6px 8px; + border: 1px solid #ccc; + border-radius: 3px; + font-size: 13px; +} +.param-field input:focus, .param-field select:focus { + outline: none; + border-color: #07bf07; +} +.profile-controls { + display: flex; + gap: 10px; + margin-top: 10px; + flex-wrap: wrap; +} +.profile-controls button { + padding: 6px 12px; + border: 1px solid #ccc; + border-radius: 3px; + background: white; + cursor: pointer; + font-size: 12px; +} +.profile-controls button:hover { + background: #e8e8e8; +} +.profile-controls button.primary { + background: #07bf07; + color: white; + border-color: #07bf07; +} +.profile-controls button.primary:hover { + background: #059905; +} +.highlight-replaced { + background-color: #d4f4dd; + padding: 2px 4px; + border-radius: 2px; + font-weight: 500; + color: #07bf07; +} +.history-panel { + background: #f9f9f9; + padding: 15px; + margin-bottom: 20px; + border-radius: 5px; + border: 1px solid #ddd; + max-height: 300px; + overflow-y: auto; +} +.history-panel h3 { + margin-top: 0; + margin-bottom: 10px; + color: #333; + display: flex; + justify-content: space-between; + align-items: center; +} +.history-item { + padding: 8px; + margin-bottom: 8px; + background: white; + border-radius: 3px; + border-left: 3px solid #07bf07; + font-size: 12px; +} +.history-item .time { + color: #666; + font-size: 11px; + margin-bottom: 4px; +} +.history-item .command { + font-family: monospace; + color: #333; + word-break: break-all; +} +.history-toggle { + cursor: pointer; + color: #07bf07; + font-size: 12px; + text-decoration: underline; +} +.favorites-panel { + background: #f9f9f9; + padding: 15px; + margin-bottom: 20px; + border-radius: 5px; + border: 1px solid #ddd; + max-height: 400px; + overflow-y: auto; +} +.favorites-panel h3 { + margin-top: 0; + margin-bottom: 10px; + color: #333; + display: flex; + justify-content: space-between; + align-items: center; +} +.favorite-item { + padding: 10px; + margin-bottom: 8px; + background: white; + border-radius: 3px; + border-left: 3px solid #07bf07; + font-size: 12px; + display: flex; + justify-content: space-between; + align-items: center; +} +.favorite-item .command { + font-family: monospace; + color: #333; + word-break: break-all; + flex: 1; +} +.favorite-item .actions { + display: flex; + gap: 8px; + margin-left: 10px; +} +.favorite-item button { + padding: 4px 8px; + border: 1px solid #ccc; + border-radius: 3px; + background: white; + cursor: pointer; + font-size: 11px; +} +.favorite-item button:hover { + background: #e8e8e8; +} +.favorite-star { + cursor: pointer; + font-size: 18px; + color: #ccc; + margin-left: 8px; + user-select: none; +} +.favorite-star.active { + color: #07bf07; +} +.favorite-star:hover { + color: #07bf07; +} +
+

Custom Parameters (auto-replaces in all commands)

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ + + + +
+
+ + +
+ Show/Hide Favorites +
+ + +
+ Show/Hide Command History +
+