Skip to content

Commit 2600deb

Browse files
author
flow-php
committed
1 parent af6edac commit 2600deb

File tree

551 files changed

+14981
-4289
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

551 files changed

+14981
-4289
lines changed

.htaccess

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Set correct MIME type for WebAssembly files
2+
<IfModule mod_mime.c>
3+
AddType application/wasm .wasm
4+
</IfModule>
5+
6+
# Enable Symfony routing
7+
<IfModule mod_rewrite.c>
8+
RewriteEngine On
9+
10+
# Redirect to URI without front controller to prevent duplicate content
11+
RewriteCond %{ENV:REDIRECT_STATUS} ^$
12+
RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]
13+
14+
# If the requested filename exists, simply serve it.
15+
RewriteCond %{REQUEST_FILENAME} -f
16+
RewriteRule ^ - [L]
17+
18+
# Rewrite all other queries to the front controller.
19+
RewriteRule ^ %{ENV:BASE}/index.php [L]
20+
</IfModule>

aggregations/aggregating_functions/average/index.html

Lines changed: 29 additions & 11 deletions
Large diffs are not rendered by default.

aggregations/aggregating_functions/first/index.html

Lines changed: 29 additions & 11 deletions
Large diffs are not rendered by default.

aggregations/aggregating_functions/last/index.html

Lines changed: 29 additions & 11 deletions
Large diffs are not rendered by default.

aggregations/aggregating_functions/max/index.html

Lines changed: 29 additions & 11 deletions
Large diffs are not rendered by default.

aggregations/aggregating_functions/min/index.html

Lines changed: 29 additions & 11 deletions
Large diffs are not rendered by default.

aggregations/aggregating_functions/sum/index.html

Lines changed: 29 additions & 11 deletions
Large diffs are not rendered by default.

aggregations/grouping/group_by/index.html

Lines changed: 29 additions & 11 deletions
Large diffs are not rendered by default.

aggregations/grouping/group_by_sum/index.html

Lines changed: 29 additions & 11 deletions
Large diffs are not rendered by default.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import controller_0 from "../../controllers/share_code_controller.js";
2+
import controller_1 from "../../controllers/scroll_to_top_controller.js";
3+
import controller_2 from "../../controllers/syntax_highlight_controller.js";
4+
import controller_3 from "../../controllers/clipboard_controller.js";
5+
import controller_4 from "../../controllers/image_swap_controller.js";
6+
import controller_5 from "../../controllers/reset_confirm_controller.js";
7+
import controller_6 from "../../controllers/playground-editor_controller.js";
8+
import controller_7 from "../../controllers/all_links_external_controller.js";
9+
import controller_8 from "../../controllers/wasm_controller.js";
10+
import controller_9 from "../../controllers/code_editor_controller.js";
11+
import controller_10 from "../../controllers/mermaid_controller.js";
12+
export const eagerControllers = {"share-code": controller_0, "scroll-to-top": controller_1, "syntax-highlight": controller_2, "clipboard": controller_3, "image-swap": controller_4, "reset-confirm": controller_5, "playground-editor": controller_6, "all-links-external": controller_7, "wasm": controller_8, "code-editor": controller_9, "mermaid": controller_10};
13+
export const lazyControllers = {};
14+
export const isApplicationDebug = false;

0 commit comments

Comments
 (0)