⚡ Added .htaccess file to static root directory
This commit is contained in:
@@ -196,6 +196,7 @@ pre {
|
|||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
transition: all 0.2s ease-in-out;
|
transition: all 0.2s ease-in-out;
|
||||||
user-select: text;
|
user-select: text;
|
||||||
|
width: calc(100% - 8px);
|
||||||
|
|
||||||
&:not([readonly]):hover,
|
&:not([readonly]):hover,
|
||||||
&:not([readonly]):focus {
|
&:not([readonly]):focus {
|
||||||
|
|||||||
@@ -5,13 +5,21 @@
|
|||||||
<input aria-label="Search" type="text" placeholder="search history" :readonly="history.length === 0 || isClearingHistory" v-model="filterText">
|
<input aria-label="Search" type="text" placeholder="search history" :readonly="history.length === 0 || isClearingHistory" v-model="filterText">
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li @click="sort_by_time()">
|
||||||
|
<label for="">Time</label>
|
||||||
|
</li>
|
||||||
|
<li @click="sort_by_status_code()">
|
||||||
|
<label for="">Status Code</label>
|
||||||
|
</li>
|
||||||
|
<li @click="sort_by_url()">
|
||||||
|
<label for="">URL</label>
|
||||||
|
</li>
|
||||||
|
<li @click="sort_by_path()">
|
||||||
|
<label for="">Path</label>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<virtual-list class="virtual-list" :class="{filled: filteredHistory.length}" :size="54" :remain="Math.min(5, filteredHistory.length)">
|
<virtual-list class="virtual-list" :class="{filled: filteredHistory.length}" :size="54" :remain="Math.min(5, filteredHistory.length)">
|
||||||
<ul>
|
|
||||||
<li @click="sort_by_time()">Time</li>
|
|
||||||
<li @click="sort_by_status_code()">Status Code</li>
|
|
||||||
<li @click="sort_by_url()">URL</li>
|
|
||||||
<li @click="sort_by_path()">Path</li>
|
|
||||||
</ul>
|
|
||||||
<ul v-for="(entry, index) in filteredHistory" :key="index" class="entry">
|
<ul v-for="(entry, index) in filteredHistory" :key="index" class="entry">
|
||||||
<li>
|
<li>
|
||||||
<input aria-label="Time" type="text" readonly :value="entry.time" :title="entry.date">
|
<input aria-label="Time" type="text" readonly :value="entry.time" :title="entry.date">
|
||||||
|
|||||||
@@ -9,11 +9,8 @@
|
|||||||
ExpiresByType image/svg+xml "access plus 1 year"
|
ExpiresByType image/svg+xml "access plus 1 year"
|
||||||
ExpiresByType image/x-icon "access plus 1 year"
|
ExpiresByType image/x-icon "access plus 1 year"
|
||||||
|
|
||||||
|
|
||||||
# CSS, JavaScript
|
# CSS, JavaScript
|
||||||
ExpiresByType text/css "access plus 1 month"
|
ExpiresByType text/css "access plus 1 month"
|
||||||
ExpiresByType text/javascript "access plus 1 month"
|
ExpiresByType text/javascript "access plus 1 month"
|
||||||
ExpiresByType application/javascript "access plus 1 month"
|
ExpiresByType application/javascript "access plus 1 month"
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
</IfModule>
|
|
||||||
Reference in New Issue
Block a user