mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 15:25:01 -04:00
[#181] remove comments in template, update todos
This commit is contained in:
parent
1fd72363bd
commit
79bbea9052
2 changed files with 0 additions and 10 deletions
|
@ -17,11 +17,8 @@
|
||||||
|
|
||||||
### JS:
|
### JS:
|
||||||
- `core/Recipe.mjs`, `core/lib/Magic.js` return imports to original
|
- `core/Recipe.mjs`, `core/lib/Magic.js` return imports to original
|
||||||
- adopted existing codestyle but check with CC `let ops, selected` etc in `searchOperations` ( can't we just declare and assign them once? maybe there is a reason )
|
|
||||||
|
|
||||||
### Misc:
|
### Misc:
|
||||||
- check for remaining todos
|
|
||||||
- check for remaining comments to be deleted
|
|
||||||
- check and add browser vendor prefixes throughout stylesheets where needed
|
- check and add browser vendor prefixes throughout stylesheets where needed
|
||||||
- comb through CSS and improve organisation for better DevX
|
- comb through CSS and improve organisation for better DevX
|
||||||
- special checks for features removed from mobile ( like multiple tabs, minimise, maximise etc. )
|
- special checks for features removed from mobile ( like multiple tabs, minimise, maximise etc. )
|
||||||
|
|
|
@ -193,13 +193,11 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="workspace-wrapper">
|
<div id="workspace-wrapper">
|
||||||
|
|
||||||
<div id="operations" class="split split-horizontal no-select">
|
<div id="operations" class="split split-horizontal no-select">
|
||||||
<div class="title no-select"
|
<div class="title no-select"
|
||||||
data-help-title="Operations list"
|
data-help-title="Operations list"
|
||||||
data-help="<p>The Operations list contains all the operations in CyberChef arranged into categories. Some operations may be present in multiple categories. You can search for operations using the search box.</p><p>To use an operation, either double click it, or drag it into the Recipe pane. You will then be able to configure its arguments (or 'Ingredients' in CyberChef terminology).</p>">
|
data-help="<p>The Operations list contains all the operations in CyberChef arranged into categories. Some operations may be present in multiple categories. You can search for operations using the search box.</p><p>To use an operation, either double click it, or drag it into the Recipe pane. You will then be able to configure its arguments (or 'Ingredients' in CyberChef terminology).</p>">
|
||||||
Operations
|
Operations
|
||||||
|
|
||||||
<span class="pane-controls hide-on-maximised-output">
|
<span class="pane-controls hide-on-maximised-output">
|
||||||
<button type="button"
|
<button type="button"
|
||||||
class="btn bmd-btn-icon mobile-only hidden"
|
class="btn bmd-btn-icon mobile-only hidden"
|
||||||
|
@ -219,7 +217,6 @@
|
||||||
data-help-title="Searching for operations"
|
data-help-title="Searching for operations"
|
||||||
data-help="<p>Use the search box to find useful operations.</p><p>Both operation names and descriptions are queried using a fuzzy matching algorithm.</p>"
|
data-help="<p>Use the search box to find useful operations.</p><p>Both operation names and descriptions are queried using a fuzzy matching algorithm.</p>"
|
||||||
/>
|
/>
|
||||||
<!--operation list and categories-->
|
|
||||||
<div id="operations-dropdown">
|
<div id="operations-dropdown">
|
||||||
<ul id="search-results" class="op-list hidden"></ul>
|
<ul id="search-results" class="op-list hidden"></ul>
|
||||||
<div id="categories" class="panel-group no-select hidden"></div>
|
<div id="categories" class="panel-group no-select hidden"></div>
|
||||||
|
@ -267,9 +264,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="IO" class="split split-horizontal">
|
<div id="IO" class="split split-horizontal">
|
||||||
<!--input-->
|
|
||||||
<div id="input" class="split no-select" data-help-title="Input pane" data-help="<p>Input data can be entered by typing it in, pasting it in, dragging it in, or using the 'Load file' or 'Load folder' buttons.</p><p>CyberChef does its best to represent data as accurately as possible to ensure you know exactly what you are working with. Non-printable characters are represented using control character pictures, for example a null byte (0x00) is displayed like this: <span title='Control character null' aria-label='Control character null' class='cm-specialChar'>␀</span>.</p>">
|
<div id="input" class="split no-select" data-help-title="Input pane" data-help="<p>Input data can be entered by typing it in, pasting it in, dragging it in, or using the 'Load file' or 'Load folder' buttons.</p><p>CyberChef does its best to represent data as accurately as possible to ensure you know exactly what you are working with. Non-printable characters are represented using control character pictures, for example a null byte (0x00) is displayed like this: <span title='Control character null' aria-label='Control character null' class='cm-specialChar'>␀</span>.</p>">
|
||||||
<div class="title no-select">
|
<div class="title no-select">
|
||||||
<label for="input-text">Input</label>
|
<label for="input-text">Input</label>
|
||||||
|
@ -323,8 +318,6 @@
|
||||||
<div id="input-text"></div>
|
<div id="input-text"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--output-->
|
|
||||||
<div id="output" class="split" data-help-title="Output pane" data-help="<p>This pane displays the results of the Recipe after it has processed your Input.</p><p>CyberChef does its best to represent data as accurately as possible to ensure you know exactly what you are working with. Non-printable characters are represented using control character pictures, for example a null byte (0x00) is displayed like this: <span title='Control character null' aria-label='Control character null' class='cm-specialChar'>␀</span>.</p><p>When copying these characters from the Output, the original byte value should be copied into your clipboard, rather than the control character picture itself.</p>">
|
<div id="output" class="split" data-help-title="Output pane" data-help="<p>This pane displays the results of the Recipe after it has processed your Input.</p><p>CyberChef does its best to represent data as accurately as possible to ensure you know exactly what you are working with. Non-printable characters are represented using control character pictures, for example a null byte (0x00) is displayed like this: <span title='Control character null' aria-label='Control character null' class='cm-specialChar'>␀</span>.</p><p>When copying these characters from the Output, the original byte value should be copied into your clipboard, rather than the control character picture itself.</p>">
|
||||||
<div class="title no-select">
|
<div class="title no-select">
|
||||||
<label for="output-text">Output</label>
|
<label for="output-text">Output</label>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue