Skip to content

Commit

Permalink
regenerated schedule
Browse files Browse the repository at this point in the history
Signed-off-by: René <snooz@posteo.de>
  • Loading branch information
Snooz82 committed Dec 5, 2023
1 parent 3e5bd13 commit 60d3106
Show file tree
Hide file tree
Showing 9 changed files with 381 additions and 169 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ pnpm-debug.log*
*.njsproj
*.sln
*.sw?

# Test files
schedule.robot
results/*
2 changes: 1 addition & 1 deletion dist/css/app.5bd9ac60.css → dist/css/app.8837a484.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/js/app.011b5d80.js

This file was deleted.

1 change: 1 addition & 0 deletions dist/js/app.77654663.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ self.__precacheManifest = (self.__precacheManifest || []).concat([
"url": "dist/404.html"
},
{
"revision": "f9a9dd0b6fbe27238360",
"url": "dist/css/app.5bd9ac60.css"
"revision": "e409d7d9a077cf4fbd0c",
"url": "dist/css/app.8837a484.css"
},
{
"revision": "27679e61bfd27e1093f4bf200900b8e7",
Expand Down Expand Up @@ -188,12 +188,12 @@ self.__precacheManifest = (self.__precacheManifest || []).concat([
"url": "dist/img/ticket-depth.jpg"
},
{
"revision": "a286c5a14001512117e80e99cb0225a7",
"revision": "95a6378e5902d793ce55ef720cfceeb5",
"url": "dist/index.html"
},
{
"revision": "f9a9dd0b6fbe27238360",
"url": "dist/js/app.011b5d80.js"
"revision": "e409d7d9a077cf4fbd0c",
"url": "dist/js/app.77654663.js"
},
{
"revision": "71fe642c6ceae86d8cdc",
Expand Down
2 changes: 1 addition & 1 deletion dist/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");

importScripts(
"dist/precache-manifest.a9bf60383469f69853109f71e226dd7f.js"
"dist/precache-manifest.362e5522104d4f0908618c7ef98fa762.js"
);

workbox.core.setCacheNameDetails({prefix: "robot-framework"});
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))</script><link href="dist/css/app.5bd9ac60.css" rel="preload" as="style"><link href="dist/js/app.011b5d80.js" rel="preload" as="script"><link href="dist/js/chunk-vendors.6e0fb070.js" rel="preload" as="script"><link href="dist/css/app.5bd9ac60.css" rel="stylesheet"><link rel="icon" type="image/png" sizes="32x32" href="dist/img/icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="dist/img/icons/favicon-16x16.png"><link rel="manifest" href="dist/manifest.json"><meta name="theme-color" content="#4DBA87"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="robot-framework"><link rel="apple-touch-icon" href="dist/img/icons/apple-touch-icon-152x152.png"><link rel="mask-icon" href="dist/img/icons/safari-pinned-tab.svg" color="#4DBA87"><meta name="msapplication-TileImage" content="dist/img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"></head><body><noscript><strong>We're sorry but robot-framework doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="dist/js/chunk-vendors.6e0fb070.js"></script><script src="dist/js/app.011b5d80.js"></script></body></html>
}(window.location))</script><link href="dist/css/app.8837a484.css" rel="preload" as="style"><link href="dist/js/app.77654663.js" rel="preload" as="script"><link href="dist/js/chunk-vendors.6e0fb070.js" rel="preload" as="script"><link href="dist/css/app.8837a484.css" rel="stylesheet"><link rel="icon" type="image/png" sizes="32x32" href="dist/img/icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="dist/img/icons/favicon-16x16.png"><link rel="manifest" href="dist/manifest.json"><meta name="theme-color" content="#4DBA87"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="robot-framework"><link rel="apple-touch-icon" href="dist/img/icons/apple-touch-icon-152x152.png"><link rel="mask-icon" href="dist/img/icons/safari-pinned-tab.svg" color="#4DBA87"><meta name="msapplication-TileImage" content="dist/img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"></head><body><noscript><strong>We're sorry but robot-framework doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="dist/js/chunk-vendors.6e0fb070.js"></script><script src="dist/js/app.77654663.js"></script></body></html>
12 changes: 11 additions & 1 deletion src/components/Workshops24.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,17 @@ export default {
publicPath: process.env.BASE_URL
}),
computed: {
workshops: () => talks24.filter((talk) => talk['Session type'].en.includes('Workshop'))
workshops: () => talks24
.filter((talk) => talk['Session type'].en.includes('Workshop'))
.sort((a, b) => {
if (a['Proposal title'] < b['Proposal title']) {
return -1
}
if (a['Proposal title'] > b['Proposal title']) {
return 1
}
return 0
})
},
methods: {
format,
Expand Down
Loading

0 comments on commit 60d3106

Please sign in to comment.