diff options
Diffstat (limited to 'pydis_site/static')
36 files changed, 1097 insertions, 147 deletions
diff --git a/pydis_site/static/css/base/base.css b/pydis_site/static/css/base/base.css index 4b36b7ce..79a8a92d 100644 --- a/pydis_site/static/css/base/base.css +++ b/pydis_site/static/css/base/base.css @@ -54,7 +54,6 @@ main.site-content {      padding-left: 2.5rem;      padding-right: 2.5rem;      background-color: #697ec4ff; -    margin-left: 0.5rem;      transition: all 0.2s cubic-bezier(.25,.8,.25,1);      overflow: hidden;  } @@ -80,7 +79,7 @@ main.site-content {  #netcup-logo {      padding-left: 15px; -    background: url(https://www.netcup-wiki.de/static/assets/images/netcup_logo_white.svg) no-repeat center; +    background: url(/static/images/sponsors/netcup-white.svg) no-repeat center;      background-size: 60px;      background-position: 0px 3px;      color: #00000000; diff --git a/pydis_site/static/css/content/color.css b/pydis_site/static/css/content/color.css new file mode 100644 index 00000000..f4801c28 --- /dev/null +++ b/pydis_site/static/css/content/color.css @@ -0,0 +1,7 @@ +.content .fa-github { +    color: black; +} + +.content .fa-github:hover { +    color: #7289DA; +} diff --git a/pydis_site/static/css/content/page.css b/pydis_site/static/css/content/page.css index d831f86d..239f2809 100644 --- a/pydis_site/static/css/content/page.css +++ b/pydis_site/static/css/content/page.css @@ -2,10 +2,29 @@      padding: 1rem;  } +#edit-on-github { +    margin-left: 1rem; +} + +@media (max-width: 600px) { +    #edit-on-github { +        display: none; +    } +} +  i.has-icon-padding {      padding: 0 10px 25px 0;  } +.card.github-card { +    height: 100%; +    display: flex; +    flex-direction: column; +} + +.card.github-card .card-content { +    flex: 1; +}  /*   * Move padding padding from <pre> tag to hljs <code> tags so the padding   * space is colored the same as the background of hljs <code> blocks. diff --git a/pydis_site/static/css/content/tag.css b/pydis_site/static/css/content/tag.css new file mode 100644 index 00000000..79795f9e --- /dev/null +++ b/pydis_site/static/css/content/tag.css @@ -0,0 +1,13 @@ +.content a * { +    /* This is the original color, but propagated down the chain */ +    /* which allows for elements inside links, such as codeblocks */ +    color: #7289DA; +} + +.content a *:hover { +    color: dimgray; +} + +span.update-time { +    text-decoration: black underline dotted; +} diff --git a/pydis_site/static/css/events/base.css b/pydis_site/static/css/events/base.css index 266bca1d..9e244ed9 100644 --- a/pydis_site/static/css/events/base.css +++ b/pydis_site/static/css/events/base.css @@ -10,3 +10,11 @@ pre {       */      background-color: #282c34;  } + +.panel .panel-heading { +  /* +   * Remove whitespace between the panel heading and the first item in a panel, +   * since it makes the first panel item taller than the others. +   */ +  margin-bottom: 0 !important +} diff --git a/pydis_site/static/css/home/index.css b/pydis_site/static/css/home/index.css index 7ec8af74..e117a35b 100644 --- a/pydis_site/static/css/home/index.css +++ b/pydis_site/static/css/home/index.css @@ -49,11 +49,16 @@ h1 {      margin: auto auto;  } -#wave-hero-right img{ +#wave-hero-right img {      border-radius: 10px;      box-shadow: 0 1px 6px rgba(0,0,0,0.16), 0 1px 6px rgba(0,0,0,0.23);      margin-top: 1em;      text-align: right; +    transition: all 0.3s cubic-bezier(.25,.8,.25,1); +} + +#wave-hero-right img:hover { +    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);  }  #wave-hero .wave { @@ -121,8 +126,7 @@ h1 {      margin: 0 4% 0 4%;      background-color: #3EB2EF;      color: white; -    font-size: 15px; -    line-height: 33px; +    line-height: 31px;      border:none;      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);      transition: all 0.3s cubic-bezier(.25,.8,.25,1); diff --git a/pydis_site/static/css/resources/resources.css b/pydis_site/static/css/resources/resources.css index b8456e38..96d06111 100644 --- a/pydis_site/static/css/resources/resources.css +++ b/pydis_site/static/css/resources/resources.css @@ -73,6 +73,11 @@ display: block;      margin-right: 0.25em !important;  } +/* Style the search bar */ +#resource-search { +    margin: 0.25em 0.25em 0 0.25em; +} +  /* Center the 404 div */  .no-resources-found {      display: none; @@ -86,6 +91,35 @@ display: block;      display: flex !important;  } +/* By default, we hide the search tag. We'll add it only when there's a search happening. */ +.tag.search-query { +    display: none; +    min-width: fit-content; +    max-width: fit-content; +    padding-right: 2em; +} +.tag.search-query .inner { +    display: inline-block; +    padding: 0; +    max-width: 16.5rem; +    overflow: hidden; +    text-overflow: ellipsis; +    white-space: nowrap; +    line-height: 2em; +} +.tag.search-query i { +    margin: 0 !important; +    display: inline-block; +    line-height: 2em; +    float: left; +    padding-right: 1em; +} + +/* Don't allow the tag pool to exceed its parent containers width. */ +#tag-pool { +    max-width: 100%; +} +  /* Disable clicking on the checkbox itself. */  /* Instead, we want to let the anchor tag handle clicks. */  .filter-checkbox { @@ -125,7 +159,6 @@ i.is-primary {      color: #7289DA;  } -  /* Set default display to inline-flex, for centering. */  span.filter-box-tag {      display: none; @@ -181,7 +214,8 @@ button.delete.is-info::after {  /* Give outlines to active tags */  span.filter-box-tag, -span.resource-tag.active { +span.resource-tag.active, +.tag.search-query {      outline-width: 1px;      outline-style: solid;  } @@ -245,6 +279,9 @@ span.resource-tag.active.has-background-info-light {          padding-top: 4px;          padding-bottom: 4px;      } +    .tag.search-query .inner { +        max-width: 16.2rem; +    }  }  /* Constrain the width of the filterbox */ diff --git a/pydis_site/static/css/staff/logs.css b/pydis_site/static/css/staff/logs.css index acf4f1f7..56a12380 100644 --- a/pydis_site/static/css/staff/logs.css +++ b/pydis_site/static/css/staff/logs.css @@ -25,7 +25,10 @@ main.site-content {  .discord-message:first-child {      border-top: 1px; +} +.discord-message-content { +    overflow-wrap: break-word;  }  .discord-message-header { diff --git a/pydis_site/static/images/content/contributing/pull_request.png b/pydis_site/static/images/content/contributing/pull_request.png Binary files differnew file mode 100644 index 00000000..87b7ffbe --- /dev/null +++ b/pydis_site/static/images/content/contributing/pull_request.png diff --git a/pydis_site/static/images/content/discord_colored_messages/ansi-colors.png b/pydis_site/static/images/content/discord_colored_messages/ansi-colors.png Binary files differnew file mode 100644 index 00000000..d980ab4c --- /dev/null +++ b/pydis_site/static/images/content/discord_colored_messages/ansi-colors.png diff --git a/pydis_site/static/images/content/discord_colored_messages/result.png b/pydis_site/static/images/content/discord_colored_messages/result.png Binary files differnew file mode 100644 index 00000000..41ed555c --- /dev/null +++ b/pydis_site/static/images/content/discord_colored_messages/result.png diff --git a/pydis_site/static/images/content/fix-ssl-certificate/pem.png b/pydis_site/static/images/content/fix-ssl-certificate/pem.png Binary files differnew file mode 100644 index 00000000..face520f --- /dev/null +++ b/pydis_site/static/images/content/fix-ssl-certificate/pem.png diff --git a/pydis_site/static/images/content/help_channels/available_channels.png b/pydis_site/static/images/content/help_channels/available_channels.png Binary files differdeleted file mode 100644 index 0b9cfd03..00000000 --- a/pydis_site/static/images/content/help_channels/available_channels.png +++ /dev/null diff --git a/pydis_site/static/images/content/help_channels/available_message.png b/pydis_site/static/images/content/help_channels/available_message.png Binary files differdeleted file mode 100644 index 05f6ec7d..00000000 --- a/pydis_site/static/images/content/help_channels/available_message.png +++ /dev/null diff --git a/pydis_site/static/images/content/help_channels/dormant_channels.png b/pydis_site/static/images/content/help_channels/dormant_channels.png Binary files differdeleted file mode 100644 index 2c53de87..00000000 --- a/pydis_site/static/images/content/help_channels/dormant_channels.png +++ /dev/null diff --git a/pydis_site/static/images/content/help_channels/help-system-category.png b/pydis_site/static/images/content/help_channels/help-system-category.png Binary files differnew file mode 100644 index 00000000..bea5a92c --- /dev/null +++ b/pydis_site/static/images/content/help_channels/help-system-category.png diff --git a/pydis_site/static/images/content/help_channels/new-post-button.png b/pydis_site/static/images/content/help_channels/new-post-button.png Binary files differnew file mode 100644 index 00000000..4ceabf0f --- /dev/null +++ b/pydis_site/static/images/content/help_channels/new-post-button.png diff --git a/pydis_site/static/images/content/help_channels/new-post-form.png b/pydis_site/static/images/content/help_channels/new-post-form.png Binary files differnew file mode 100644 index 00000000..3e90bf7d --- /dev/null +++ b/pydis_site/static/images/content/help_channels/new-post-form.png diff --git a/pydis_site/static/images/content/help_channels/newly-created-thread-example.png b/pydis_site/static/images/content/help_channels/newly-created-thread-example.png Binary files differnew file mode 100644 index 00000000..d7b1eed4 --- /dev/null +++ b/pydis_site/static/images/content/help_channels/newly-created-thread-example.png diff --git a/pydis_site/static/images/content/help_channels/occupied_channels.png b/pydis_site/static/images/content/help_channels/occupied_channels.png Binary files differdeleted file mode 100644 index 6ccb4ed6..00000000 --- a/pydis_site/static/images/content/help_channels/occupied_channels.png +++ /dev/null diff --git a/pydis_site/static/images/content/help_channels/question-example.png b/pydis_site/static/images/content/help_channels/question-example.png Binary files differnew file mode 100644 index 00000000..da181351 --- /dev/null +++ b/pydis_site/static/images/content/help_channels/question-example.png diff --git a/pydis_site/static/images/content/help_channels/topical_channels.png b/pydis_site/static/images/content/help_channels/topical_channels.png Binary files differindex 63b48e7b..43530cbe 100644 --- a/pydis_site/static/images/content/help_channels/topical_channels.png +++ b/pydis_site/static/images/content/help_channels/topical_channels.png diff --git a/pydis_site/static/images/content/regenerating_token.jpg b/pydis_site/static/images/content/regenerating_token.jpg Binary files differnew file mode 100644 index 00000000..7b2588dc --- /dev/null +++ b/pydis_site/static/images/content/regenerating_token.jpg diff --git a/pydis_site/static/images/events/Replit.png b/pydis_site/static/images/events/Replit.png Binary files differnew file mode 100644 index 00000000..a8202641 --- /dev/null +++ b/pydis_site/static/images/events/Replit.png diff --git a/pydis_site/static/images/events/cj10_2023_banner2.png b/pydis_site/static/images/events/cj10_2023_banner2.png Binary files differnew file mode 100644 index 00000000..92cae4f6 --- /dev/null +++ b/pydis_site/static/images/events/cj10_2023_banner2.png diff --git a/pydis_site/static/images/events/cj10_2023_banner3.png b/pydis_site/static/images/events/cj10_2023_banner3.png Binary files differnew file mode 100644 index 00000000..9d808f07 --- /dev/null +++ b/pydis_site/static/images/events/cj10_2023_banner3.png diff --git a/pydis_site/static/images/events/summer_code_jam_2022/front_page_banners/live_now.png b/pydis_site/static/images/events/summer_code_jam_2022/front_page_banners/live_now.png Binary files differnew file mode 100644 index 00000000..eb30bf7e --- /dev/null +++ b/pydis_site/static/images/events/summer_code_jam_2022/front_page_banners/live_now.png diff --git a/pydis_site/static/images/events/summer_code_jam_2022/front_page_banners/qualifier_release.png b/pydis_site/static/images/events/summer_code_jam_2022/front_page_banners/qualifier_release.png Binary files differnew file mode 100644 index 00000000..1e45024b --- /dev/null +++ b/pydis_site/static/images/events/summer_code_jam_2022/front_page_banners/qualifier_release.png diff --git a/pydis_site/static/images/events/summer_code_jam_2022/front_page_banners/sign_up.png b/pydis_site/static/images/events/summer_code_jam_2022/front_page_banners/sign_up.png Binary files differnew file mode 100644 index 00000000..f807418e --- /dev/null +++ b/pydis_site/static/images/events/summer_code_jam_2022/front_page_banners/sign_up.png diff --git a/pydis_site/static/images/events/summer_code_jam_2022/site_banner.png b/pydis_site/static/images/events/summer_code_jam_2022/site_banner.png Binary files differnew file mode 100644 index 00000000..30b3dfbc --- /dev/null +++ b/pydis_site/static/images/events/summer_code_jam_2022/site_banner.png diff --git a/pydis_site/static/images/navbar/discord.svg b/pydis_site/static/images/navbar/discord.svg index 406e3836..2cf3d6cc 100644 --- a/pydis_site/static/images/navbar/discord.svg +++ b/pydis_site/static/images/navbar/discord.svg @@ -1,165 +1,244 @@  <?xml version="1.0" encoding="UTF-8" standalone="no"?>  <svg -   xmlns:dc="http://purl.org/dc/elements/1.1/" -   xmlns:cc="http://creativecommons.org/ns#" -   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" -   xmlns:svg="http://www.w3.org/2000/svg" -   xmlns="http://www.w3.org/2000/svg" -   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" -   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"     width="120mm"     height="30mm"     viewBox="0 0 120 30"     version="1.1"     id="svg8" -   inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)" -   sodipodi:docname="discord.svg"> -  <defs -     id="defs2"> -    <rect +   inkscape:version="1.2 (dc2aedaf03, 2022-05-15)" +   sodipodi:docname="discord.svg" +   xml:space="preserve" +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" +   xmlns="http://www.w3.org/2000/svg" +   xmlns:svg="http://www.w3.org/2000/svg" +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" +   xmlns:cc="http://creativecommons.org/ns#" +   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs +     id="defs2"><rect         x="75.819944"         y="98.265513"         width="25.123336"         height="7.8844509" -       id="rect953" /> -    <rect +       id="rect953" /><rect         x="75.819946"         y="98.265511"         width="25.123337"         height="7.8844509" -       id="rect953-0" /> -    <rect +       id="rect953-0" /><rect         x="75.819946"         y="98.265511"         width="25.123337"         height="7.8844509" -       id="rect968" /> -  </defs> -  <sodipodi:namedview +       id="rect968" /><clipPath +       id="clip0"><rect +         width="71" +         height="55" +         fill="white" +         id="rect716" /></clipPath><clipPath +       id="clip0-9"><rect +         width="71" +         height="55" +         fill="white" +         id="rect852" /></clipPath><clipPath +       id="clip0-6"><rect +         width="292" +         height="56.4706" +         fill="white" +         transform="translate(0 11.7646)" +         id="rect159" /></clipPath><clipPath +       id="clip1"><rect +         width="292" +         height="56.4706" +         fill="white" +         transform="translate(0 11.7646)" +         id="rect162" /></clipPath><clipPath +       id="clip0-65"><rect +         width="292" +         height="56.4706" +         fill="white" +         transform="translate(0 11.7646)" +         id="rect338" /></clipPath><clipPath +       clipPathUnits="userSpaceOnUse" +       id="clipPath405"><rect +         width="292" +         height="56.470596" +         fill="#ffffff" +         id="rect407" +         x="-8.4424901e-06" +         y="11.764597" +         style="stroke-width:1" /></clipPath><clipPath +       clipPathUnits="userSpaceOnUse" +       id="clipPath409"><rect +         width="292" +         height="56.470596" +         fill="#ffffff" +         id="rect411" +         x="-8.4424901e-06" +         y="11.764597" +         style="stroke-width:1" /></clipPath><clipPath +       clipPathUnits="userSpaceOnUse" +       id="clipPath413"><rect +         width="292" +         height="56.470596" +         fill="#ffffff" +         id="rect415" +         x="-8.4424901e-06" +         y="11.764597" +         style="stroke-width:1" /></clipPath><clipPath +       clipPathUnits="userSpaceOnUse" +       id="clipPath417"><rect +         width="292" +         height="56.470596" +         fill="#ffffff" +         id="rect419" +         x="-8.4424901e-06" +         y="11.764597" +         style="stroke-width:1" /></clipPath><clipPath +       clipPathUnits="userSpaceOnUse" +       id="clipPath421"><rect +         width="292" +         height="56.470596" +         fill="#ffffff" +         id="rect423" +         x="-8.4424901e-06" +         y="11.764597" +         style="stroke-width:1" /></clipPath><clipPath +       clipPathUnits="userSpaceOnUse" +       id="clipPath425"><rect +         width="292" +         height="56.470596" +         fill="#ffffff" +         id="rect427" +         x="-8.4424901e-06" +         y="11.764597" +         style="stroke-width:1" /></clipPath><clipPath +       clipPathUnits="userSpaceOnUse" +       id="clipPath429"><rect +         width="292" +         height="56.470596" +         fill="#ffffff" +         id="rect431" +         x="-8.4424901e-06" +         y="11.764597" +         style="stroke-width:1" /></clipPath><clipPath +       clipPathUnits="userSpaceOnUse" +       id="clipPath433"><rect +         width="292" +         height="56.470596" +         fill="#ffffff" +         id="rect435" +         x="-8.4424901e-06" +         y="11.764597" +         style="stroke-width:1" /></clipPath><clipPath +       clipPathUnits="userSpaceOnUse" +       id="clipPath437"><rect +         width="292" +         height="56.470596" +         fill="#ffffff" +         id="rect439" +         x="-8.4424901e-06" +         y="11.764597" +         style="stroke-width:1" /></clipPath></defs><sodipodi:namedview       id="base"       pagecolor="#ffffff"       bordercolor="#666666"       borderopacity="1.0" -     inkscape:pageopacity="0.0" +     inkscape:pageopacity="0"       inkscape:pageshadow="2"       inkscape:zoom="2.8" -     inkscape:cx="194.44623" -     inkscape:cy="53.152927" +     inkscape:cx="226.07143" +     inkscape:cy="53.035714"       inkscape:document-units="mm"       inkscape:current-layer="layer1"       showgrid="false" -     inkscape:window-width="2560" -     inkscape:window-height="1413" -     inkscape:window-x="4880" -     inkscape:window-y="677" +     inkscape:window-width="1920" +     inkscape:window-height="1001" +     inkscape:window-x="-9" +     inkscape:window-y="-9"       inkscape:window-maximized="1"       fit-margin-top="0"       fit-margin-left="0"       fit-margin-right="0"       fit-margin-bottom="0" -     inkscape:document-rotation="0" /> -  <metadata -     id="metadata5"> -    <rdf:RDF> -      <cc:Work -         rdf:about=""> -        <dc:format>image/svg+xml</dc:format> -        <dc:type -           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> -        <dc:title /> -      </cc:Work> -    </rdf:RDF> -  </metadata> -  <g +     inkscape:document-rotation="0" +     inkscape:pagecheckerboard="false" +     inkscape:showpageshadow="2" +     inkscape:deskcolor="#d1d1d1" /><metadata +     id="metadata5"><rdf:RDF><cc:Work +         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g       inkscape:label="Layer 1"       inkscape:groupmode="layer"       id="layer1" -     transform="translate(-52.233408,-75.88169)"> -    <rect +     transform="translate(-52.233408,-75.88169)"><rect         style="fill:#ffffff;fill-opacity:1;stroke-width:0.137677;paint-order:stroke fill markers;stop-color:#000000"         id="rect832"         width="61.511906"         height="30"         x="52.23341" -       y="75.881691" /> -    <g -       id="g910" -       transform="matrix(0.90000009,0,0,0.90000009,17.445516,9.7980333)"> -      <g -         id="g850" -         transform="matrix(0.06491223,0,0,0.06491223,109.76284,82.07218)"> -        <path -           class="st0" -           d="m 142.8,120.1 c -5.7,0 -10.2,4.9 -10.2,11 0,6.1 4.6,11 10.2,11 5.7,0 10.2,-4.9 10.2,-11 0,-6.1 -4.6,-11 -10.2,-11 z m -36.5,0 c -5.7,0 -10.2,4.9 -10.2,11 0,6.1 4.6,11 10.2,11 5.7,0 10.2,-4.9 10.2,-11 0.1,-6.1 -4.5,-11 -10.2,-11 z" -           id="path836" /> -        <path -           class="st0" -           d="m 191.4,36.9 h -134 c -11.3,0 -20.5,9.2 -20.5,20.5 v 134 c 0,11.3 9.2,20.5 20.5,20.5 h 113.4 l -5.3,-18.3 12.8,11.8 12.1,11.1 21.6,18.7 V 57.4 C 211.9,46.1 202.7,36.9 191.4,36.9 Z m -38.6,129.5 c 0,0 -3.6,-4.3 -6.6,-8 13.1,-3.7 18.1,-11.8 18.1,-11.8 -4.1,2.7 -8,4.6 -11.5,5.9 -5,2.1 -9.8,3.4 -14.5,4.3 -9.6,1.8 -18.4,1.3 -25.9,-0.1 -5.7,-1.1 -10.6,-2.6 -14.7,-4.3 -2.3,-0.9 -4.8,-2 -7.3,-3.4 -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 -0.2,-0.1 -0.3,-0.2 -0.4,-0.2 -1.8,-1 -2.8,-1.7 -2.8,-1.7 0,0 4.8,7.9 17.5,11.7 -3,3.8 -6.7,8.2 -6.7,8.2 C 75,165.8 66.6,151.4 66.6,151.4 66.6,119.5 81,93.6 81,93.6 95.4,82.9 109,83.2 109,83.2 l 1,1.2 c -18,5.1 -26.2,13 -26.2,13 0,0 2.2,-1.2 5.9,-2.8 10.7,-4.7 19.2,-5.9 22.7,-6.3 0.6,-0.1 1.1,-0.2 1.7,-0.2 6.1,-0.8 13,-1 20.2,-0.2 9.5,1.1 19.7,3.9 30.1,9.5 0,0 -7.9,-7.5 -24.9,-12.6 l 1.4,-1.6 c 0,0 13.7,-0.3 28,10.4 0,0 14.4,25.9 14.4,57.8 0,-0.1 -8.4,14.3 -30.5,15 z m 151,-86.7 H 270.6 V 117 l 22.1,19.9 v -36.2 h 11.8 c 7.5,0 11.2,3.6 11.2,9.4 v 27.7 c 0,5.8 -3.5,9.7 -11.2,9.7 h -34 v 21.1 h 33.2 c 17.8,0.1 34.5,-8.8 34.5,-29.2 V 109.6 C 338.3,88.8 321.6,79.7 303.8,79.7 Z m 174,59.7 v -30.6 c 0,-11 19.8,-13.5 25.8,-2.5 l 18.3,-7.4 c -7.2,-15.8 -20.3,-20.4 -31.2,-20.4 -17.8,0 -35.4,10.3 -35.4,30.3 v 30.6 c 0,20.2 17.6,30.3 35,30.3 11.2,0 24.6,-5.5 32,-19.9 l -19.6,-9 c -4.8,12.3 -24.9,9.3 -24.9,-1.4 z M 417.3,113 c -6.9,-1.5 -11.5,-4 -11.8,-8.3 0.4,-10.3 16.3,-10.7 25.6,-0.8 l 14.7,-11.3 c -9.2,-11.2 -19.6,-14.2 -30.3,-14.2 -16.3,0 -32.1,9.2 -32.1,26.6 0,16.9 13,26 27.3,28.2 7.3,1 15.4,3.9 15.2,8.9 -0.6,9.5 -20.2,9 -29.1,-1.8 l -14.2,13.3 c 8.3,10.7 19.6,16.1 30.2,16.1 16.3,0 34.4,-9.4 35.1,-26.6 1,-21.7 -14.8,-27.2 -30.6,-30.1 z m -67,55.5 h 22.4 V 79.7 H 350.3 Z M 728,79.7 H 694.8 V 117 l 22.1,19.9 v -36.2 h 11.8 c 7.5,0 11.2,3.6 11.2,9.4 v 27.7 c 0,5.8 -3.5,9.7 -11.2,9.7 h -34 v 21.1 H 728 c 17.8,0.1 34.5,-8.8 34.5,-29.2 V 109.6 C 762.5,88.8 745.8,79.7 728,79.7 Z M 565.1,78.5 c -18.4,0 -36.7,10 -36.7,30.5 v 30.3 c 0,20.3 18.4,30.5 36.9,30.5 18.4,0 36.7,-10.2 36.7,-30.5 V 109 C 602,88.6 583.5,78.5 565.1,78.5 Z m 14.4,60.8 c 0,6.4 -7.2,9.7 -14.3,9.7 -7.2,0 -14.4,-3.1 -14.4,-9.7 V 109 c 0,-6.5 7,-10 14,-10 7.3,0 14.7,3.1 14.7,10 z M 682.4,109 c -0.5,-20.8 -14.7,-29.2 -33,-29.2 h -35.5 v 88.8 h 22.7 v -28.2 h 4 l 20.6,28.2 h 28 L 665,138.1 c 10.7,-3.4 17.4,-12.7 17.4,-29.1 z m -32.6,12 h -13.2 v -20.3 h 13.2 c 14.1,0 14.1,20.3 0,20.3 z" -           id="path838" /> -      </g> -      <path -         id="path4789-6" -         class="" -         d="m 167.72059,90.383029 -3.19204,3.19205 c -0.15408,0.15408 -0.40352,0.15408 -0.55746,0 l -0.37229,-0.37231 c -0.15368,-0.15369 -0.15408,-0.40277 -4.9e-4,-0.55681 l 2.52975,-2.54167 -2.52975,-2.54164 c -0.15329,-0.15408 -0.15309,-0.40312 4.9e-4,-0.55681 l 0.37229,-0.37228 c 0.15408,-0.15408 0.40353,-0.15408 0.55746,0 l 3.19204,3.19201 c 0.15408,0.15407 0.15408,0.40354 0,0.55746 z" -         inkscape:connector-curvature="0" -         style="fill:#ffffff;fill-opacity:1;stroke-width:0.0164247" /> -    </g> -    <g -       id="g904" -       transform="matrix(0.90000009,0,0,0.90000009,10.464254,9.7980333)"> -      <g -         id="g850-3" -         transform="matrix(0.06491223,0,0,0.06491223,52.083661,82.07218)"> -        <path -           class="st0" -           d="m 142.8,120.1 c -5.7,0 -10.2,4.9 -10.2,11 0,6.1 4.6,11 10.2,11 5.7,0 10.2,-4.9 10.2,-11 0,-6.1 -4.6,-11 -10.2,-11 z m -36.5,0 c -5.7,0 -10.2,4.9 -10.2,11 0,6.1 4.6,11 10.2,11 5.7,0 10.2,-4.9 10.2,-11 0.1,-6.1 -4.5,-11 -10.2,-11 z" -           id="path836-5" -           style="fill:#7289da;fill-opacity:1" /> -        <path -           class="st0" -           d="m 191.4,36.9 h -134 c -11.3,0 -20.5,9.2 -20.5,20.5 v 134 c 0,11.3 9.2,20.5 20.5,20.5 h 113.4 l -5.3,-18.3 12.8,11.8 12.1,11.1 21.6,18.7 V 57.4 C 211.9,46.1 202.7,36.9 191.4,36.9 Z m -38.6,129.5 c 0,0 -3.6,-4.3 -6.6,-8 13.1,-3.7 18.1,-11.8 18.1,-11.8 -4.1,2.7 -8,4.6 -11.5,5.9 -5,2.1 -9.8,3.4 -14.5,4.3 -9.6,1.8 -18.4,1.3 -25.9,-0.1 -5.7,-1.1 -10.6,-2.6 -14.7,-4.3 -2.3,-0.9 -4.8,-2 -7.3,-3.4 -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 -0.2,-0.1 -0.3,-0.2 -0.4,-0.2 -1.8,-1 -2.8,-1.7 -2.8,-1.7 0,0 4.8,7.9 17.5,11.7 -3,3.8 -6.7,8.2 -6.7,8.2 C 75,165.8 66.6,151.4 66.6,151.4 66.6,119.5 81,93.6 81,93.6 95.4,82.9 109,83.2 109,83.2 l 1,1.2 c -18,5.1 -26.2,13 -26.2,13 0,0 2.2,-1.2 5.9,-2.8 10.7,-4.7 19.2,-5.9 22.7,-6.3 0.6,-0.1 1.1,-0.2 1.7,-0.2 6.1,-0.8 13,-1 20.2,-0.2 9.5,1.1 19.7,3.9 30.1,9.5 0,0 -7.9,-7.5 -24.9,-12.6 l 1.4,-1.6 c 0,0 13.7,-0.3 28,10.4 0,0 14.4,25.9 14.4,57.8 0,-0.1 -8.4,14.3 -30.5,15 z" -           id="path838-6" -           style="fill:#7289da;fill-opacity:1" -           sodipodi:nodetypes="sssssccccccscccccccccccccccccccccccccccc" /> -      </g> -      <path -         id="path4789-6-2" -         class="" -         d="m 107.16039,90.382629 -3.19204,3.19205 c -0.15408,0.15408 -0.40352,0.15408 -0.55746,0 l -0.37229,-0.37231 c -0.15368,-0.15369 -0.15408,-0.40277 -5.3e-4,-0.55681 l 2.52975,-2.54167 -2.52975,-2.54164 c -0.15329,-0.15408 -0.15309,-0.40312 5.3e-4,-0.55681 l 0.37229,-0.37228 c 0.15408,-0.15408 0.40353,-0.15408 0.55746,0 l 3.19204,3.19201 c 0.15408,0.15407 0.15408,0.40354 0,0.55746 z" -         inkscape:connector-curvature="0" -         style="fill:#7289da;fill-opacity:1;stroke-width:0.0164247" /> -      <g -         aria-label="JOIN US" -         transform="matrix(1.2501707,0,0,1.2501707,-25.160061,-36.966352)" -         id="text951" -         style="font-style:normal;font-weight:normal;font-size:6.35px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect953-0);fill:#7289da;fill-opacity:1;stroke:none"> -        <path -           d="m 75.839362,102.56309 c 0.127,0.9525 0.89535,1.3843 1.67005,1.3843 0.85725,0 1.7145,-0.55245 1.7145,-1.53035 v -3.028953 h -2.1463 v 1.028703 h 1.02235 v 2.00025 c 0,0.26035 -0.2667,0.4318 -0.5461,0.4318 -0.2794,0 -0.57785,-0.14605 -0.64135,-0.508 z" -           style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-family:'Uni Sans';-inkscape-font-specification:'Uni Sans Heavy';fill:#7289da;fill-opacity:1" -           id="path850" /> -        <path -           d="m 79.795412,102.40434 c 0,1.0287 0.93345,1.54305 1.8669,1.54305 0.93345,0 1.86055,-0.51435 1.86055,-1.54305 v -1.5367 c 0,-1.028703 -0.93345,-1.543053 -1.8669,-1.543053 -0.93345,0 -1.86055,0.508 -1.86055,1.543053 z m 1.13665,-1.5367 c 0,-0.3302 0.3556,-0.508 0.7112,-0.508 0.3683,0 0.74295,0.15875 0.74295,0.508 v 1.5367 c 0,0.32385 -0.36195,0.48895 -0.7239,0.48895 -0.36195,0 -0.73025,-0.15875 -0.73025,-0.48895 z" -           style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-family:'Uni Sans';-inkscape-font-specification:'Uni Sans Heavy';fill:#7289da;fill-opacity:1" -           id="path852" /> -        <path -           d="m 85.262755,99.388087 h -1.13665 v 4.495803 h 1.13665 z" -           style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-family:'Uni Sans';-inkscape-font-specification:'Uni Sans Heavy';fill:#7289da;fill-opacity:1" -           id="path854" /> -        <path -           d="m 85.973945,103.88389 h 1.13665 v -1.79705 l -0.14605,-0.86995 0.03175,-0.006 0.3937,0.9017 1.016,1.77165 h 1.14935 v -4.495803 h -1.1303 v 2.038353 c 0.0063,0 0.12065,0.7747 0.127,0.7747 l -0.03175,0.006 -0.381,-0.9017 -1.08585,-1.917703 h -1.0795 z" -           style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-family:'Uni Sans';-inkscape-font-specification:'Uni Sans Heavy';fill:#7289da;fill-opacity:1" -           id="path856" /> -        <path -           d="m 92.546182,99.388087 h -1.14935 v 2.990853 c -0.0063,2.1082 3.5814,2.1082 3.58775,0 v -2.990853 h -1.14935 v 2.990853 c -0.0064,0.7239 -1.28905,0.7239 -1.28905,0 z" -           style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-family:'Uni Sans';-inkscape-font-specification:'Uni Sans Heavy';fill:#7289da;fill-opacity:1" -           id="path858" /> -        <path -           d="m 95.44178,103.13459 c 0.4191,0.53975 0.9906,0.8128 1.53035,0.8128 0.8255,0 1.7399,-0.47625 1.778,-1.3462 0.0508,-1.1049 -0.7493,-1.3843 -1.5494,-1.53035 -0.34925,-0.0762 -0.5842,-0.2032 -0.5969,-0.4191 0.01905,-0.5207 0.8255,-0.53975 1.2954,-0.0381 l 0.74295,-0.5715 c -0.46355,-0.565153 -0.9906,-0.717553 -1.5367,-0.717553 -0.8255,0 -1.6256,0.46355 -1.6256,1.346203 0,0.85725 0.6604,1.31445 1.3843,1.42875 0.3683,0.0508 0.78105,0.19685 0.76835,0.45085 -0.03175,0.4826 -1.02235,0.4572 -1.4732,-0.0889 z" -           style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-family:'Uni Sans';-inkscape-font-specification:'Uni Sans Heavy';fill:#7289da;fill-opacity:1" -           id="path860" /> -      </g> -    </g> -  </g> -  <style -     id="style834">.st0{fill:#FFFFFF;}</style> -</svg> +       y="75.881691" /><path +       id="path4789-6" +       class="" +       d="m 168.39406,91.142768 -2.87283,2.872845 c -0.13868,0.138672 -0.36317,0.138672 -0.50172,0 l -0.33506,-0.335079 c -0.13831,-0.138321 -0.13867,-0.362493 -4.4e-4,-0.501129 l 2.27677,-2.287503 -2.27677,-2.287477 c -0.13796,-0.138672 -0.13778,-0.362808 4.4e-4,-0.501129 l 0.33506,-0.335052 c 0.13867,-0.138672 0.36318,-0.138672 0.50172,0 l 2.87283,2.872809 c 0.13867,0.138663 0.13867,0.363187 0,0.501715 z" +       inkscape:connector-curvature="0" +       style="fill:#ffffff;fill-opacity:1;stroke-width:0.0147822" /><path +       id="path4789-6-2" +       class="" +       d="m 106.90861,91.142408 -2.87283,2.872845 c -0.13867,0.138672 -0.36317,0.138672 -0.50172,0 L 103.199,93.680174 c -0.13831,-0.138321 -0.13867,-0.362493 -4.7e-4,-0.501129 l 2.27677,-2.287503 -2.27677,-2.287477 c -0.13796,-0.138672 -0.13778,-0.362808 4.7e-4,-0.501129 l 0.33506,-0.335052 c 0.13868,-0.138672 0.36318,-0.138672 0.50172,0 l 2.87283,2.872809 c 0.13868,0.138663 0.13868,0.363187 0,0.501715 z" +       inkscape:connector-curvature="0" +       style="fill:#7289da;fill-opacity:1;stroke-width:0.0147822" /><g +       style="fill:none" +       id="g196" +       transform="matrix(0.14732984,0,0,0.14732984,118.63341,84.998511)"><g +         clip-path="url(#clip1)" +         id="g155"><path +           d="m 61.7958,16.494 c -4.7222,-2.2094 -9.7714,-3.8151 -15.0502,-4.7294 -0.6483,1.1721 -1.4057,2.7486 -1.9279,4.0027 -5.6115,-0.8439 -11.1714,-0.8439 -16.6797,0 -0.5221,-1.2541 -1.2967,-2.8306 -1.9508,-4.0027 -5.2845,0.9143 -10.3395,2.5259 -15.0617,4.7411 C 1.60078,30.8988 -0.981215,44.9344 0.309785,58.7707 6.62708,63.4883 12.7493,66.3541 18.7682,68.2294 c 1.4861,-2.0453 2.8115,-4.2195 3.9533,-6.5109 -2.1746,-0.8263 -4.2574,-1.846 -6.2254,-3.0298 0.5221,-0.3868 1.0328,-0.7912 1.5262,-1.2073 12.0034,5.6143 25.0454,5.6143 36.9054,0 0.4992,0.4161 1.0098,0.8205 1.5262,1.2073 -1.9738,1.1896 -4.0623,2.2093 -6.2369,3.0357 1.1418,2.2855 2.4615,4.4656 3.9533,6.5108 6.0247,-1.8753 12.1526,-4.741 18.4699,-9.4645 C 74.155,42.7309 70.0525,28.8242 61.7958,16.494 Z m -37.439,33.7675 c -3.6033,0 -6.5583,-3.3639 -6.5583,-7.4603 0,-4.0964 2.8919,-7.4661 6.5583,-7.4661 3.6665,0 6.6214,3.3638 6.5583,7.4661 0.0057,4.0964 -2.8918,7.4603 -6.5583,7.4603 z m 24.2364,0 c -3.6033,0 -6.5583,-3.3639 -6.5583,-7.4603 0,-4.0964 2.8918,-7.4661 6.5583,-7.4661 3.6664,0 6.6214,3.3638 6.5583,7.4661 0,4.0964 -2.8919,7.4603 -6.5583,7.4603 z" +           fill="#ffffff" +           id="path137" /><path +           d="m 98.0293,26.1707 h 15.6637 c 3.776,0 6.966,0.6036 9.583,1.805 2.61,1.2013 4.567,2.8774 5.864,5.0223 1.296,2.1449 1.95,4.6004 1.95,7.3665 0,2.7075 -0.677,5.163 -2.031,7.3606 -1.354,2.2035 -3.414,3.9441 -6.185,5.2275 -2.771,1.2834 -6.203,1.928 -10.305,1.928 H 98.0293 Z m 14.3787,21.4138 c 2.542,0 4.499,-0.6505 5.864,-1.9457 1.366,-1.301 2.049,-3.0708 2.049,-5.3153 0,-2.0805 -0.609,-3.739 -1.825,-4.9814 -1.216,-1.2424 -3.058,-1.8694 -5.52,-1.8694 h -4.9 v 14.1118 z" +           fill="#ffffff" +           id="path139" /><path +           d="m 154.541,54.8456 c -2.169,-0.5743 -4.126,-1.4065 -5.864,-2.5024 v -6.8097 c 1.314,1.0372 3.075,1.8929 5.284,2.5668 2.209,0.6681 4.344,1.0021 6.409,1.0021 0.964,0 1.693,-0.1289 2.186,-0.3868 0.494,-0.2578 0.741,-0.5684 0.741,-0.9259 0,-0.4102 -0.132,-0.7501 -0.402,-1.0256 -0.27,-0.2754 -0.792,-0.504 -1.566,-0.6974 l -4.82,-1.1076 c -2.76,-0.6563 -4.717,-1.5647 -5.881,-2.7309 -1.165,-1.1604 -1.745,-2.6841 -1.745,-4.5711 0,-1.5882 0.505,-2.9653 1.527,-4.1433 1.015,-1.1779 2.461,-2.0863 4.337,-2.7251 1.877,-0.6446 4.068,-0.9669 6.587,-0.9669 2.249,0 4.309,0.2461 6.186,0.7384 1.876,0.4923 3.425,1.1193 4.659,1.887 v 6.4406 c -1.263,-0.7677 -2.709,-1.3713 -4.361,-1.8285 -1.647,-0.4512 -3.339,-0.6739 -5.084,-0.6739 -2.519,0 -3.775,0.4395 -3.775,1.3127 0,0.4103 0.195,0.715 0.585,0.9201 0.39,0.2051 1.107,0.4161 2.146,0.6388 l 4.016,0.7384 c 2.623,0.463 4.579,1.2776 5.864,2.4379 1.286,1.1604 1.928,2.8775 1.928,5.1513 0,2.4906 -1.061,4.4656 -3.19,5.9307 -2.129,1.4651 -5.147,2.1976 -9.06,2.1976 -2.301,-0.0058 -4.538,-0.293 -6.707,-0.8673 z" +           fill="#ffffff" +           id="path141" /><path +           d="m 182.978,53.9839 c -2.3,-1.1487 -4.039,-2.7075 -5.198,-4.6766 -1.159,-1.9691 -1.744,-4.1843 -1.744,-6.6457 0,-2.4613 0.602,-4.6648 1.807,-6.6046 1.205,-1.9398 2.972,-3.4635 5.302,-4.5711 2.329,-1.1076 5.112,-1.6585 8.354,-1.6585 4.016,0 7.35,0.8615 10.001,2.5844 v 7.5072 c -0.935,-0.6564 -2.026,-1.1897 -3.271,-1.5999 -1.245,-0.4102 -2.576,-0.6154 -3.999,-0.6154 -2.49,0 -4.435,0.463 -5.841,1.3948 -1.406,0.9318 -2.111,2.1449 -2.111,3.651 0,1.4768 0.682,2.6841 2.048,3.6335 1.366,0.9435 3.345,1.4182 5.944,1.4182 1.337,0 2.657,-0.1993 3.959,-0.5919 1.297,-0.3985 2.416,-0.8849 3.351,-1.4593 v 7.261 c -2.943,1.805 -6.357,2.7075 -10.242,2.7075 -3.27,-0.0117 -6.059,-0.586 -8.36,-1.7346 z" +           fill="#ffffff" +           id="path143" /><path +           d="m 211.518,53.9841 c -2.318,-1.1486 -4.085,-2.7192 -5.302,-4.7176 -1.216,-1.9984 -1.83,-4.2253 -1.83,-6.6867 0,-2.4613 0.608,-4.659 1.83,-6.587 1.222,-1.9281 2.978,-3.4401 5.285,-4.536 2.3,-1.0959 5.049,-1.6409 8.233,-1.6409 3.185,0 5.933,0.545 8.234,1.6409 2.301,1.0959 4.057,2.5962 5.262,4.5125 1.205,1.9164 1.807,4.114 1.807,6.6047 0,2.4613 -0.602,4.6883 -1.807,6.6866 -1.205,1.9984 -2.967,3.569 -5.285,4.7176 -2.318,1.1487 -5.055,1.723 -8.216,1.723 -3.162,0 -5.899,-0.5685 -8.211,-1.7171 z m 12.204,-7.2786 c 0.976,-0.9962 1.469,-2.3148 1.469,-3.9557 0,-1.6409 -0.488,-2.9478 -1.469,-3.9148 -0.975,-0.9728 -2.307,-1.4592 -3.993,-1.4592 -1.716,0 -3.059,0.4864 -4.04,1.4592 -0.975,0.9729 -1.463,2.2739 -1.463,3.9148 0,1.6409 0.488,2.9595 1.463,3.9557 0.976,0.9963 2.324,1.5003 4.04,1.5003 1.686,-0.0059 3.018,-0.504 3.993,-1.5003 z" +           fill="#ffffff" +           id="path145" /><path +           d="m 259.17,31.3395 v 8.8609 c -1.021,-0.6857 -2.341,-1.0256 -3.976,-1.0256 -2.141,0 -3.793,0.6623 -4.941,1.9867 -1.153,1.3245 -1.727,3.3873 -1.727,6.1768 v 7.5482 h -9.84 V 30.8883 h 9.64 v 7.6302 c 0.533,-2.7896 1.4,-4.8465 2.593,-6.1769 1.188,-1.3244 2.725,-1.9866 4.596,-1.9866 1.417,0 2.634,0.3282 3.655,0.9845 z" +           fill="#ffffff" +           id="path147" /><path +           d="m 291.864,25.3503 v 29.5363 h -9.841 v -5.3739 c -0.832,2.0218 -2.094,3.5631 -3.792,4.6179 -1.699,1.0491 -3.799,1.5765 -6.289,1.5765 -2.226,0 -4.165,-0.5509 -5.824,-1.6585 -1.658,-1.1076 -2.937,-2.6254 -3.838,-4.5535 -0.895,-1.9281 -1.349,-4.1081 -1.349,-6.546 -0.028,-2.5141 0.448,-4.7704 1.429,-6.7688 0.976,-1.9984 2.358,-3.5572 4.137,-4.6766 1.779,-1.1193 3.81,-1.6819 6.088,-1.6819 4.688,0 7.832,2.0804 9.438,6.2354 V 25.3503 Z m -11.309,21.1912 c 1.004,-0.9963 1.503,-2.2914 1.503,-3.8737 0,-1.5296 -0.488,-2.7779 -1.463,-3.7331 -0.976,-0.9552 -2.313,-1.4358 -3.994,-1.4358 -1.658,0 -2.983,0.4864 -3.976,1.4592 -0.993,0.9729 -1.486,2.2328 -1.486,3.7917 0,1.5589 0.493,2.8306 1.486,3.8151 0.993,0.9845 2.301,1.4768 3.936,1.4768 1.658,-0.0058 2.989,-0.504 3.994,-1.5002 z" +           fill="#ffffff" +           id="path149" /><path +           d="m 139.382,33.4432 c 2.709,0 4.906,-2.0151 4.906,-4.5008 0,-2.4857 -2.197,-4.5007 -4.906,-4.5007 -2.71,0 -4.906,2.015 -4.906,4.5007 0,2.4857 2.196,4.5008 4.906,4.5008 z" +           fill="#ffffff" +           id="path151" /><path +           d="m 134.472,36.5435 c 3.006,1.3244 6.736,1.383 9.811,0 v 18.4719 h -9.811 z" +           fill="#ffffff" +           id="path153" /></g></g><path +       d="m 61.7958,16.494 c -4.7222,-2.2094 -9.7714,-3.8151 -15.0502,-4.7294 -0.6483,1.1721 -1.4057,2.7486 -1.9279,4.0027 -5.6115,-0.8439 -11.1714,-0.8439 -16.6797,0 -0.5221,-1.2541 -1.2967,-2.8306 -1.9508,-4.0027 -5.2845,0.9143 -10.3395,2.5259 -15.0617,4.7411 C 1.60078,30.8988 -0.981215,44.9344 0.309785,58.7707 6.62708,63.4883 12.7493,66.3541 18.7682,68.2294 c 1.4861,-2.0453 2.8115,-4.2195 3.9533,-6.5109 -2.1746,-0.8263 -4.2574,-1.846 -6.2254,-3.0298 0.5221,-0.3868 1.0328,-0.7912 1.5262,-1.2073 12.0034,5.6143 25.0454,5.6143 36.9054,0 0.4992,0.4161 1.0098,0.8205 1.5262,1.2073 -1.9738,1.1896 -4.0623,2.2093 -6.2369,3.0357 1.1418,2.2855 2.4615,4.4656 3.9533,6.5108 6.0247,-1.8753 12.1526,-4.741 18.4699,-9.4645 C 74.155,42.7309 70.0525,28.8242 61.7958,16.494 Z m -37.439,33.7675 c -3.6033,0 -6.5583,-3.3639 -6.5583,-7.4603 0,-4.0964 2.8919,-7.4661 6.5583,-7.4661 3.6665,0 6.6214,3.3638 6.5583,7.4661 0.0057,4.0964 -2.8918,7.4603 -6.5583,7.4603 z m 24.2364,0 c -3.6033,0 -6.5583,-3.3639 -6.5583,-7.4603 0,-4.0964 2.8918,-7.4661 6.5583,-7.4661 3.6664,0 6.6214,3.3638 6.5583,7.4661 0,4.0964 -2.8919,7.4603 -6.5583,7.4603 z" +       fill="#7289da" +       id="path316" +       transform="matrix(0.14732889,0,0,0.1473333,59.747728,84.998373)" +       clip-path="url(#clipPath437)" +       style="fill:#7289da;fill-opacity:1" /><g +       aria-label="Join us" +       id="text232" +       style="font-weight:bold;font-stretch:ultra-expanded;font-size:5.98733px;font-family:'ABC Ginto Nord Bold';-inkscape-font-specification:'ABC Ginto Nord Bold,  Bold Ultra-Expanded';fill:#7289da;stroke-width:0.264147"><path +         d="m 75.055954,93.217428 c 1.059757,0 1.802186,-0.484974 1.802186,-1.616579 v -2.71226 h -1.496832 v 2.37697 c 0,0.484973 -0.305354,0.736441 -0.772366,0.736441 -0.347265,0 -0.562809,-0.131721 -0.69453,-0.24548 v 1.125618 c 0.185607,0.167645 0.60472,0.33529 1.161542,0.33529 z" +         id="path892" /><path +         d="m 79.624282,93.199466 c 1.454921,0 2.281172,-0.844213 2.281172,-1.915945 0,-1.07772 -0.826251,-1.86206 -2.281172,-1.86206 -1.454922,0 -2.28716,0.790327 -2.28716,1.86206 0,1.065744 0.832238,1.915945 2.28716,1.915945 z m 0,-1.095681 c -0.514911,0 -0.820265,-0.323316 -0.820265,-0.796315 0,-0.472999 0.305354,-0.78434 0.820265,-0.78434 0.508923,0 0.814277,0.311341 0.814277,0.78434 0,0.472999 -0.305354,0.796315 -0.814277,0.796315 z" +         id="path894" /><path +         d="m 83.144829,89.595094 c 0.461024,0 0.78434,-0.245481 0.78434,-0.598733 0,-0.341278 -0.323316,-0.586759 -0.78434,-0.586759 -0.467012,0 -0.802303,0.245481 -0.802303,0.586759 0,0.353252 0.335291,0.598733 0.802303,0.598733 z m 0.724466,3.484626 V 89.816625 H 82.4024 v 3.263095 z" +         id="path896" /><path +         d="m 87.407809,89.421461 c -0.730454,0 -1.173516,0.329303 -1.418997,1.029821 v -0.87415 h -1.448934 v 3.502588 h 1.460909 v -1.646516 c 0,-0.544847 0.24548,-0.826252 0.724467,-0.826252 0.431088,0 0.658606,0.275417 0.658606,0.802302 v 1.670466 h 1.466896 v -1.981807 c 0,-1.101668 -0.496948,-1.676452 -1.442947,-1.676452 z" +         id="path898" /><path +         d="m 93.832213,91.301483 c 0,0.532872 -0.239493,0.808289 -0.700517,0.808289 -0.44905,0 -0.652619,-0.24548 -0.652619,-0.778353 v -1.754287 h -1.466896 v 2.113527 c 0,0.969947 0.496948,1.514794 1.436959,1.514794 0.664594,0 1.149567,-0.293379 1.383073,-0.8502 v 0.724467 h 1.466896 v -3.502588 h -1.466896 z" +         id="path900" /><path +         d="m 97.729969,93.199466 c 1.191478,0 1.826135,-0.478986 1.826135,-1.185491 0,-0.69453 -0.419113,-0.975935 -1.161542,-1.107656 l -0.598733,-0.107772 c -0.287391,-0.05987 -0.407138,-0.0958 -0.407138,-0.227519 0,-0.119746 0.161658,-0.191594 0.562809,-0.191594 0.53886,0 1.047783,0.15567 1.407022,0.365227 V 89.80465 c -0.341277,-0.209556 -0.910074,-0.383189 -1.616579,-0.383189 -1.137592,0 -1.856072,0.44905 -1.856072,1.14358 0,0.532872 0.293379,0.868163 1.137593,1.065745 l 0.718479,0.161658 c 0.245481,0.05987 0.29338,0.143696 0.29338,0.251467 0,0.0958 -0.125734,0.191595 -0.437076,0.191595 -0.610707,0 -1.347149,-0.215544 -1.742313,-0.520898 v 0.993897 c 0.520898,0.317329 1.185492,0.490961 1.874035,0.490961 z" +         id="path902" /></g></g><style +     id="style834">.st0{fill:#FFFFFF;}</style></svg> diff --git a/pydis_site/static/images/sponsors/netcup-white.svg b/pydis_site/static/images/sponsors/netcup-white.svg new file mode 100755 index 00000000..27541788 --- /dev/null +++ b/pydis_site/static/images/sponsors/netcup-white.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 305 87"><title>netcup_logo_white</title><path d="M254.712,77.153h5.837V87H242.932V26.254h-5.293V16.4h34.9c7.02,0,10.481,3.543,10.481,10.732v29.22c0,6.968-3.567,10.511-10.8,10.511h-10.7V57.016H268c2.376,0,3.568-1.222,3.568-3.766V30.126c0-2.552-1.192-3.872-3.461-3.872h-13.4ZM232.467,66.862H200.054c-7.028,0-10.588-3.543-10.588-10.625V25.145h-5.187V16.4h16.852V52.807c0,2.765,1.3,4.209,3.782,4.209h10.48V16.4h11.673V57.016h5.4Zm-55.9,0H140.369V34.221c0-11.841,6.264-17.822,18.907-17.822H176.67V33.335H166.625V26.254h-8.212c-4.324,0-6.486,2.429-6.486,7.187V57.016h24.636Zm-45.063,0H118.636c-5.722,0-8.533-3.1-8.533-9.182V26.254h-6.486V16.4H110.1V.906h11.558V16.4h9.724v9.855h-9.724V53.471c0,2.544,1.405,3.766,4.11,3.651H128.9a19.654,19.654,0,0,0,2.6-.106ZM97.116,47.5H71.074v6.532c0,1.986.97,2.987,2.811,2.987H95.817v9.846H69.348c-6.486,0-9.725-3.208-9.725-9.74V27.353c0-7.3,3.782-10.954,11.237-10.954H86.635c6.914,0,10.374,3.43,10.481,10.4Zm-26.042-9.74h14.7V29.462c0-2.109-.978-3.208-2.918-3.208H74.206c-2.055,0-3.132,1.214-3.132,3.651Zm-38.127,29.1V29.126c0-1.88-1.085-2.872-3.247-2.872H17.386V66.862H5.714V26.254H.313V16.4H34.994c6.379,0,9.618,3.323,9.618,10.076V57.016h5.4v9.846Z" style="fill:#fff;fill-rule:evenodd"/><path d="M295.6,16.007a7.05,7.05,0,0,1-7.211-6.838A7.29,7.29,0,0,1,295.6,1.911c3.927,0,7.7,3.278,7.7,7.258,0,3.8-3.774,6.838-7.7,6.838M287,9.169a8.4,8.4,0,0,0,8.6,8.228c4.928,0,9.091-3.706,9.091-8.228A8.952,8.952,0,0,0,295.6.53,8.608,8.608,0,0,0,287,9.169m6.577-.535V5.579h2.215c1.139,0,2.323.161,2.323,1.481,0,1.506-1.307,1.574-2.788,1.574ZM292.182,14h1.39V10.025h1.75L298.255,14h1.436L296.85,9.91a2.6,2.6,0,0,0,2.65-2.781c0-1.986-1.1-2.941-3.414-2.941h-3.9Z" style="fill:#fff;fill-rule:evenodd"/></svg> diff --git a/pydis_site/static/js/content/listing.js b/pydis_site/static/js/content/listing.js new file mode 100644 index 00000000..4b722632 --- /dev/null +++ b/pydis_site/static/js/content/listing.js @@ -0,0 +1,41 @@ +/** + * Trim a tag listing to only show a few lines of content. + */ +function trimTag() { +    const containers = document.getElementsByClassName("tag-container"); +    for (const container of containers) { +        if (container.textContent.startsWith("Contains the following tags:")) { +            // Tag group, no need to trim +            continue; +        } + +        // Remove every element after the first two paragraphs +        while (container.children.length > 2) { +            container.removeChild(container.lastChild); +        } + +        // Trim down the elements if they are too long +        const containerLength = container.textContent.length; +        if (containerLength > 300) { +            if (containerLength - container.firstChild.textContent.length > 300) { +                // The first element alone takes up more than 300 characters +                container.removeChild(container.lastChild); +            } + +            let last = container.lastChild.lastChild; +            while (container.textContent.length > 300 && container.lastChild.childNodes.length > 0) { +                last = container.lastChild.lastChild; +                last.remove(); +            } + +            if (container.textContent.length > 300 && (last instanceof HTMLElement && last.tagName !== "CODE")) { +                // Add back the final element (up to a period if possible) +                const stop = last.textContent.indexOf("."); +                last.textContent = last.textContent.slice(0, stop > 0 ? stop + 1: null); +                container.lastChild.appendChild(last); +            } +        } +    } +} + +trimTag(); diff --git a/pydis_site/static/js/fuzzysort/LICENSE.md b/pydis_site/static/js/fuzzysort/LICENSE.md new file mode 100644 index 00000000..a3b9d9d7 --- /dev/null +++ b/pydis_site/static/js/fuzzysort/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Stephen Kamenar + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/pydis_site/static/js/fuzzysort/fuzzysort.js b/pydis_site/static/js/fuzzysort/fuzzysort.js new file mode 100644 index 00000000..ba01ae63 --- /dev/null +++ b/pydis_site/static/js/fuzzysort/fuzzysort.js @@ -0,0 +1,636 @@ +/* +  fuzzysort.js https://github.com/farzher/fuzzysort +  SublimeText-like Fuzzy Search + +  fuzzysort.single('fs', 'Fuzzy Search') // {score: -16} +  fuzzysort.single('test', 'test') // {score: 0} +  fuzzysort.single('doesnt exist', 'target') // null + +  fuzzysort.go('mr', [{file:'Monitor.cpp'}, {file:'MeshRenderer.cpp'}], {key:'file'}) +  // [{score:-18, obj:{file:'MeshRenderer.cpp'}}, {score:-6009, obj:{file:'Monitor.cpp'}}] + +  fuzzysort.go('mr', ['Monitor.cpp', 'MeshRenderer.cpp']) +  // [{score: -18, target: "MeshRenderer.cpp"}, {score: -6009, target: "Monitor.cpp"}] + +  fuzzysort.highlight(fuzzysort.single('fs', 'Fuzzy Search'), '<b>', '</b>') +  // <b>F</b>uzzy <b>S</b>earch +*/ + +// UMD (Universal Module Definition) for fuzzysort +;(function(root, UMD) { +  if(typeof define === 'function' && define.amd) define([], UMD) +  else if(typeof module === 'object' && module.exports) module.exports = UMD() +  else root.fuzzysort = UMD() +})(this, function UMD() { function fuzzysortNew(instanceOptions) { + +  var fuzzysort = { + +    single: function(search, target, options) {                                                                                                                                                                                                               ;if(search=='farzher')return{target:"farzher was here (^-^*)/",score:0,indexes:[0,1,2,3,4,5,6]} +      if(!search) return null +      if(!isObj(search)) search = fuzzysort.getPreparedSearch(search) + +      if(!target) return null +      if(!isObj(target)) target = fuzzysort.getPrepared(target) + +      var allowTypo = options && options.allowTypo!==undefined ? options.allowTypo +        : instanceOptions && instanceOptions.allowTypo!==undefined ? instanceOptions.allowTypo +        : true +      var algorithm = allowTypo ? fuzzysort.algorithm : fuzzysort.algorithmNoTypo +      return algorithm(search, target, search[0]) +    }, + +    go: function(search, targets, options) {                                                                                                                                                                                                                  ;if(search=='farzher')return[{target:"farzher was here (^-^*)/",score:0,indexes:[0,1,2,3,4,5,6],obj:targets?targets[0]:null}] +      if(!search) return noResults +      search = fuzzysort.prepareSearch(search) +      var searchLowerCode = search[0] + +      var threshold = options && options.threshold || instanceOptions && instanceOptions.threshold || -9007199254740991 +      var limit = options && options.limit || instanceOptions && instanceOptions.limit || 9007199254740991 +      var allowTypo = options && options.allowTypo!==undefined ? options.allowTypo +        : instanceOptions && instanceOptions.allowTypo!==undefined ? instanceOptions.allowTypo +        : true +      var algorithm = allowTypo ? fuzzysort.algorithm : fuzzysort.algorithmNoTypo +      var resultsLen = 0; var limitedCount = 0 +      var targetsLen = targets.length + +      // This code is copy/pasted 3 times for performance reasons [options.keys, options.key, no keys] + +      // options.keys +      if(options && options.keys) { +        var scoreFn = options.scoreFn || defaultScoreFn +        var keys = options.keys +        var keysLen = keys.length +        for(var i = targetsLen - 1; i >= 0; --i) { var obj = targets[i] +          var objResults = new Array(keysLen) +          for (var keyI = keysLen - 1; keyI >= 0; --keyI) { +            var key = keys[keyI] +            var target = getValue(obj, key) +            if(!target) { objResults[keyI] = null; continue } +            if(!isObj(target)) target = fuzzysort.getPrepared(target) + +            objResults[keyI] = algorithm(search, target, searchLowerCode) +          } +          objResults.obj = obj // before scoreFn so scoreFn can use it +          var score = scoreFn(objResults) +          if(score === null) continue +          if(score < threshold) continue +          objResults.score = score +          if(resultsLen < limit) { q.add(objResults); ++resultsLen } +          else { +            ++limitedCount +            if(score > q.peek().score) q.replaceTop(objResults) +          } +        } + +      // options.key +      } else if(options && options.key) { +        var key = options.key +        for(var i = targetsLen - 1; i >= 0; --i) { var obj = targets[i] +          var target = getValue(obj, key) +          if(!target) continue +          if(!isObj(target)) target = fuzzysort.getPrepared(target) + +          var result = algorithm(search, target, searchLowerCode) +          if(result === null) continue +          if(result.score < threshold) continue + +          // have to clone result so duplicate targets from different obj can each reference the correct obj +          result = {target:result.target, _targetLowerCodes:null, _nextBeginningIndexes:null, score:result.score, indexes:result.indexes, obj:obj} // hidden + +          if(resultsLen < limit) { q.add(result); ++resultsLen } +          else { +            ++limitedCount +            if(result.score > q.peek().score) q.replaceTop(result) +          } +        } + +      // no keys +      } else { +        for(var i = targetsLen - 1; i >= 0; --i) { var target = targets[i] +          if(!target) continue +          if(!isObj(target)) target = fuzzysort.getPrepared(target) + +          var result = algorithm(search, target, searchLowerCode) +          if(result === null) continue +          if(result.score < threshold) continue +          if(resultsLen < limit) { q.add(result); ++resultsLen } +          else { +            ++limitedCount +            if(result.score > q.peek().score) q.replaceTop(result) +          } +        } +      } + +      if(resultsLen === 0) return noResults +      var results = new Array(resultsLen) +      for(var i = resultsLen - 1; i >= 0; --i) results[i] = q.poll() +      results.total = resultsLen + limitedCount +      return results +    }, + +    goAsync: function(search, targets, options) { +      var canceled = false +      var p = new Promise(function(resolve, reject) {                                                                                                                                                                                                         ;if(search=='farzher')return resolve([{target:"farzher was here (^-^*)/",score:0,indexes:[0,1,2,3,4,5,6],obj:targets?targets[0]:null}]) +        if(!search) return resolve(noResults) +        search = fuzzysort.prepareSearch(search) +        var searchLowerCode = search[0] + +        var q = fastpriorityqueue() +        var iCurrent = targets.length - 1 +        var threshold = options && options.threshold || instanceOptions && instanceOptions.threshold || -9007199254740991 +        var limit = options && options.limit || instanceOptions && instanceOptions.limit || 9007199254740991 +        var allowTypo = options && options.allowTypo!==undefined ? options.allowTypo +          : instanceOptions && instanceOptions.allowTypo!==undefined ? instanceOptions.allowTypo +          : true +        var algorithm = allowTypo ? fuzzysort.algorithm : fuzzysort.algorithmNoTypo +        var resultsLen = 0; var limitedCount = 0 +        function step() { +          if(canceled) return reject('canceled') + +          var startMs = Date.now() + +          // This code is copy/pasted 3 times for performance reasons [options.keys, options.key, no keys] + +          // options.keys +          if(options && options.keys) { +            var scoreFn = options.scoreFn || defaultScoreFn +            var keys = options.keys +            var keysLen = keys.length +            for(; iCurrent >= 0; --iCurrent) { +              if(iCurrent%1000/*itemsPerCheck*/ === 0) { +                if(Date.now() - startMs >= 10/*asyncInterval*/) { +                  isNode?setImmediate(step):setTimeout(step) +                  return +                } +              } + +              var obj = targets[iCurrent] +              var objResults = new Array(keysLen) +              for (var keyI = keysLen - 1; keyI >= 0; --keyI) { +                var key = keys[keyI] +                var target = getValue(obj, key) +                if(!target) { objResults[keyI] = null; continue } +                if(!isObj(target)) target = fuzzysort.getPrepared(target) + +                objResults[keyI] = algorithm(search, target, searchLowerCode) +              } +              objResults.obj = obj // before scoreFn so scoreFn can use it +              var score = scoreFn(objResults) +              if(score === null) continue +              if(score < threshold) continue +              objResults.score = score +              if(resultsLen < limit) { q.add(objResults); ++resultsLen } +              else { +                ++limitedCount +                if(score > q.peek().score) q.replaceTop(objResults) +              } +            } + +          // options.key +          } else if(options && options.key) { +            var key = options.key +            for(; iCurrent >= 0; --iCurrent) { +              if(iCurrent%1000/*itemsPerCheck*/ === 0) { +                if(Date.now() - startMs >= 10/*asyncInterval*/) { +                  isNode?setImmediate(step):setTimeout(step) +                  return +                } +              } + +              var obj = targets[iCurrent] +              var target = getValue(obj, key) +              if(!target) continue +              if(!isObj(target)) target = fuzzysort.getPrepared(target) + +              var result = algorithm(search, target, searchLowerCode) +              if(result === null) continue +              if(result.score < threshold) continue + +              // have to clone result so duplicate targets from different obj can each reference the correct obj +              result = {target:result.target, _targetLowerCodes:null, _nextBeginningIndexes:null, score:result.score, indexes:result.indexes, obj:obj} // hidden + +              if(resultsLen < limit) { q.add(result); ++resultsLen } +              else { +                ++limitedCount +                if(result.score > q.peek().score) q.replaceTop(result) +              } +            } + +          // no keys +          } else { +            for(; iCurrent >= 0; --iCurrent) { +              if(iCurrent%1000/*itemsPerCheck*/ === 0) { +                if(Date.now() - startMs >= 10/*asyncInterval*/) { +                  isNode?setImmediate(step):setTimeout(step) +                  return +                } +              } + +              var target = targets[iCurrent] +              if(!target) continue +              if(!isObj(target)) target = fuzzysort.getPrepared(target) + +              var result = algorithm(search, target, searchLowerCode) +              if(result === null) continue +              if(result.score < threshold) continue +              if(resultsLen < limit) { q.add(result); ++resultsLen } +              else { +                ++limitedCount +                if(result.score > q.peek().score) q.replaceTop(result) +              } +            } +          } + +          if(resultsLen === 0) return resolve(noResults) +          var results = new Array(resultsLen) +          for(var i = resultsLen - 1; i >= 0; --i) results[i] = q.poll() +          results.total = resultsLen + limitedCount +          resolve(results) +        } + +        isNode?setImmediate(step):step() //setTimeout here is too slow +      }) +      p.cancel = function() { canceled = true } +      return p +    }, + +    highlight: function(result, hOpen, hClose) { +      if(typeof hOpen == 'function') return fuzzysort.highlightCallback(result, hOpen) +      if(result === null) return null +      if(hOpen === undefined) hOpen = '<b>' +      if(hClose === undefined) hClose = '</b>' +      var highlighted = '' +      var matchesIndex = 0 +      var opened = false +      var target = result.target +      var targetLen = target.length +      var matchesBest = result.indexes +      for(var i = 0; i < targetLen; ++i) { var char = target[i] +        if(matchesBest[matchesIndex] === i) { +          ++matchesIndex +          if(!opened) { opened = true +            highlighted += hOpen +          } + +          if(matchesIndex === matchesBest.length) { +            highlighted += char + hClose + target.substr(i+1) +            break +          } +        } else { +          if(opened) { opened = false +            highlighted += hClose +          } +        } +        highlighted += char +      } + +      return highlighted +    }, +    highlightCallback: function(result, cb) { +      if(result === null) return null +      var target = result.target +      var targetLen = target.length +      var indexes = result.indexes +      var highlighted = '' +      var matchI = 0 +      var indexesI = 0 +      var opened = false +      var result = [] +      for(var i = 0; i < targetLen; ++i) { var char = target[i] +        if(indexes[indexesI] === i) { +          ++indexesI +          if(!opened) { opened = true +            result.push(highlighted); highlighted = '' +          } + +          if(indexesI === indexes.length) { +            highlighted += char +            result.push(cb(highlighted, matchI++)); highlighted = '' +            result.push(target.substr(i+1)) +            break +          } +        } else { +          if(opened) { opened = false +            result.push(cb(highlighted, matchI++)); highlighted = '' +          } +        } +        highlighted += char +      } +      return result +    }, + +    prepare: function(target) { +      if(!target) return {target: '', _targetLowerCodes: [0/*this 0 doesn't make sense. here because an empty array causes the algorithm to deoptimize and run 50% slower!*/], _nextBeginningIndexes: null, score: null, indexes: null, obj: null} // hidden +      return {target:target, _targetLowerCodes:fuzzysort.prepareLowerCodes(target), _nextBeginningIndexes:null, score:null, indexes:null, obj:null} // hidden +    }, +    prepareSlow: function(target) { +      if(!target) return {target: '', _targetLowerCodes: [0/*this 0 doesn't make sense. here because an empty array causes the algorithm to deoptimize and run 50% slower!*/], _nextBeginningIndexes: null, score: null, indexes: null, obj: null} // hidden +      return {target:target, _targetLowerCodes:fuzzysort.prepareLowerCodes(target), _nextBeginningIndexes:fuzzysort.prepareNextBeginningIndexes(target), score:null, indexes:null, obj:null} // hidden +    }, +    prepareSearch: function(search) { +      if(!search) search = '' +      return fuzzysort.prepareLowerCodes(search) +    }, + + + +    // Below this point is only internal code +    // Below this point is only internal code +    // Below this point is only internal code +    // Below this point is only internal code + + + +    getPrepared: function(target) { +      if(target.length > 999) return fuzzysort.prepare(target) // don't cache huge targets +      var targetPrepared = preparedCache.get(target) +      if(targetPrepared !== undefined) return targetPrepared +      targetPrepared = fuzzysort.prepare(target) +      preparedCache.set(target, targetPrepared) +      return targetPrepared +    }, +    getPreparedSearch: function(search) { +      if(search.length > 999) return fuzzysort.prepareSearch(search) // don't cache huge searches +      var searchPrepared = preparedSearchCache.get(search) +      if(searchPrepared !== undefined) return searchPrepared +      searchPrepared = fuzzysort.prepareSearch(search) +      preparedSearchCache.set(search, searchPrepared) +      return searchPrepared +    }, + +    algorithm: function(searchLowerCodes, prepared, searchLowerCode) { +      var targetLowerCodes = prepared._targetLowerCodes +      var searchLen = searchLowerCodes.length +      var targetLen = targetLowerCodes.length +      var searchI = 0 // where we at +      var targetI = 0 // where you at +      var typoSimpleI = 0 +      var matchesSimpleLen = 0 + +      // very basic fuzzy match; to remove non-matching targets ASAP! +      // walk through target. find sequential matches. +      // if all chars aren't found then exit +      for(;;) { +        var isMatch = searchLowerCode === targetLowerCodes[targetI] +        if(isMatch) { +          matchesSimple[matchesSimpleLen++] = targetI +          ++searchI; if(searchI === searchLen) break +          searchLowerCode = searchLowerCodes[typoSimpleI===0?searchI : (typoSimpleI===searchI?searchI+1 : (typoSimpleI===searchI-1?searchI-1 : searchI))] +        } + +        ++targetI; if(targetI >= targetLen) { // Failed to find searchI +          // Check for typo or exit +          // we go as far as possible before trying to transpose +          // then we transpose backwards until we reach the beginning +          for(;;) { +            if(searchI <= 1) return null // not allowed to transpose first char +            if(typoSimpleI === 0) { // we haven't tried to transpose yet +              --searchI +              var searchLowerCodeNew = searchLowerCodes[searchI] +              if(searchLowerCode === searchLowerCodeNew) continue // doesn't make sense to transpose a repeat char +              typoSimpleI = searchI +            } else { +              if(typoSimpleI === 1) return null // reached the end of the line for transposing +              --typoSimpleI +              searchI = typoSimpleI +              searchLowerCode = searchLowerCodes[searchI + 1] +              var searchLowerCodeNew = searchLowerCodes[searchI] +              if(searchLowerCode === searchLowerCodeNew) continue // doesn't make sense to transpose a repeat char +            } +            matchesSimpleLen = searchI +            targetI = matchesSimple[matchesSimpleLen - 1] + 1 +            break +          } +        } +      } + +      var searchI = 0 +      var typoStrictI = 0 +      var successStrict = false +      var matchesStrictLen = 0 + +      var nextBeginningIndexes = prepared._nextBeginningIndexes +      if(nextBeginningIndexes === null) nextBeginningIndexes = prepared._nextBeginningIndexes = fuzzysort.prepareNextBeginningIndexes(prepared.target) +      var firstPossibleI = targetI = matchesSimple[0]===0 ? 0 : nextBeginningIndexes[matchesSimple[0]-1] + +      // Our target string successfully matched all characters in sequence! +      // Let's try a more advanced and strict test to improve the score +      // only count it as a match if it's consecutive or a beginning character! +      if(targetI !== targetLen) for(;;) { +        if(targetI >= targetLen) { +          // We failed to find a good spot for this search char, go back to the previous search char and force it forward +          if(searchI <= 0) { // We failed to push chars forward for a better match +            // transpose, starting from the beginning +            ++typoStrictI; if(typoStrictI > searchLen-2) break +            if(searchLowerCodes[typoStrictI] === searchLowerCodes[typoStrictI+1]) continue // doesn't make sense to transpose a repeat char +            targetI = firstPossibleI +            continue +          } + +          --searchI +          var lastMatch = matchesStrict[--matchesStrictLen] +          targetI = nextBeginningIndexes[lastMatch] + +        } else { +          var isMatch = searchLowerCodes[typoStrictI===0?searchI : (typoStrictI===searchI?searchI+1 : (typoStrictI===searchI-1?searchI-1 : searchI))] === targetLowerCodes[targetI] +          if(isMatch) { +            matchesStrict[matchesStrictLen++] = targetI +            ++searchI; if(searchI === searchLen) { successStrict = true; break } +            ++targetI +          } else { +            targetI = nextBeginningIndexes[targetI] +          } +        } +      } + +      { // tally up the score & keep track of matches for highlighting later +        if(successStrict) { var matchesBest = matchesStrict; var matchesBestLen = matchesStrictLen } +        else { var matchesBest = matchesSimple; var matchesBestLen = matchesSimpleLen } +        var score = 0 +        var lastTargetI = -1 +        for(var i = 0; i < searchLen; ++i) { var targetI = matchesBest[i] +          // score only goes down if they're not consecutive +          if(lastTargetI !== targetI - 1) score -= targetI +          lastTargetI = targetI +        } +        if(!successStrict) { +          score *= 1000 +          if(typoSimpleI !== 0) score += -20/*typoPenalty*/ +        } else { +          if(typoStrictI !== 0) score += -20/*typoPenalty*/ +        } +        score -= targetLen - searchLen +        prepared.score = score +        prepared.indexes = new Array(matchesBestLen); for(var i = matchesBestLen - 1; i >= 0; --i) prepared.indexes[i] = matchesBest[i] + +        return prepared +      } +    }, + +    algorithmNoTypo: function(searchLowerCodes, prepared, searchLowerCode) { +      var targetLowerCodes = prepared._targetLowerCodes +      var searchLen = searchLowerCodes.length +      var targetLen = targetLowerCodes.length +      var searchI = 0 // where we at +      var targetI = 0 // where you at +      var matchesSimpleLen = 0 + +      // very basic fuzzy match; to remove non-matching targets ASAP! +      // walk through target. find sequential matches. +      // if all chars aren't found then exit +      for(;;) { +        var isMatch = searchLowerCode === targetLowerCodes[targetI] +        if(isMatch) { +          matchesSimple[matchesSimpleLen++] = targetI +          ++searchI; if(searchI === searchLen) break +          searchLowerCode = searchLowerCodes[searchI] +        } +        ++targetI; if(targetI >= targetLen) return null // Failed to find searchI +      } + +      var searchI = 0 +      var successStrict = false +      var matchesStrictLen = 0 + +      var nextBeginningIndexes = prepared._nextBeginningIndexes +      if(nextBeginningIndexes === null) nextBeginningIndexes = prepared._nextBeginningIndexes = fuzzysort.prepareNextBeginningIndexes(prepared.target) +      var firstPossibleI = targetI = matchesSimple[0]===0 ? 0 : nextBeginningIndexes[matchesSimple[0]-1] + +      // Our target string successfully matched all characters in sequence! +      // Let's try a more advanced and strict test to improve the score +      // only count it as a match if it's consecutive or a beginning character! +      if(targetI !== targetLen) for(;;) { +        if(targetI >= targetLen) { +          // We failed to find a good spot for this search char, go back to the previous search char and force it forward +          if(searchI <= 0) break // We failed to push chars forward for a better match + +          --searchI +          var lastMatch = matchesStrict[--matchesStrictLen] +          targetI = nextBeginningIndexes[lastMatch] + +        } else { +          var isMatch = searchLowerCodes[searchI] === targetLowerCodes[targetI] +          if(isMatch) { +            matchesStrict[matchesStrictLen++] = targetI +            ++searchI; if(searchI === searchLen) { successStrict = true; break } +            ++targetI +          } else { +            targetI = nextBeginningIndexes[targetI] +          } +        } +      } + +      { // tally up the score & keep track of matches for highlighting later +        if(successStrict) { var matchesBest = matchesStrict; var matchesBestLen = matchesStrictLen } +        else { var matchesBest = matchesSimple; var matchesBestLen = matchesSimpleLen } +        var score = 0 +        var lastTargetI = -1 +        for(var i = 0; i < searchLen; ++i) { var targetI = matchesBest[i] +          // score only goes down if they're not consecutive +          if(lastTargetI !== targetI - 1) score -= targetI +          lastTargetI = targetI +        } +        if(!successStrict) score *= 1000 +        score -= targetLen - searchLen +        prepared.score = score +        prepared.indexes = new Array(matchesBestLen); for(var i = matchesBestLen - 1; i >= 0; --i) prepared.indexes[i] = matchesBest[i] + +        return prepared +      } +    }, + +    prepareLowerCodes: function(str) { +      var strLen = str.length +      var lowerCodes = [] // new Array(strLen)    sparse array is too slow +      var lower = str.toLowerCase() +      for(var i = 0; i < strLen; ++i) lowerCodes[i] = lower.charCodeAt(i) +      return lowerCodes +    }, +    prepareBeginningIndexes: function(target) { +      var targetLen = target.length +      var beginningIndexes = []; var beginningIndexesLen = 0 +      var wasUpper = false +      var wasAlphanum = false +      for(var i = 0; i < targetLen; ++i) { +        var targetCode = target.charCodeAt(i) +        var isUpper = targetCode>=65&&targetCode<=90 +        var isAlphanum = isUpper || targetCode>=97&&targetCode<=122 || targetCode>=48&&targetCode<=57 +        var isBeginning = isUpper && !wasUpper || !wasAlphanum || !isAlphanum +        wasUpper = isUpper +        wasAlphanum = isAlphanum +        if(isBeginning) beginningIndexes[beginningIndexesLen++] = i +      } +      return beginningIndexes +    }, +    prepareNextBeginningIndexes: function(target) { +      var targetLen = target.length +      var beginningIndexes = fuzzysort.prepareBeginningIndexes(target) +      var nextBeginningIndexes = [] // new Array(targetLen)     sparse array is too slow +      var lastIsBeginning = beginningIndexes[0] +      var lastIsBeginningI = 0 +      for(var i = 0; i < targetLen; ++i) { +        if(lastIsBeginning > i) { +          nextBeginningIndexes[i] = lastIsBeginning +        } else { +          lastIsBeginning = beginningIndexes[++lastIsBeginningI] +          nextBeginningIndexes[i] = lastIsBeginning===undefined ? targetLen : lastIsBeginning +        } +      } +      return nextBeginningIndexes +    }, + +    cleanup: cleanup, +    new: fuzzysortNew, +  } +  return fuzzysort +} // fuzzysortNew + +// This stuff is outside fuzzysortNew, because it's shared with instances of fuzzysort.new() +var isNode = typeof require !== 'undefined' && typeof window === 'undefined' +var MyMap = Map||function(){var s=Object.create(null);this.get=function(k){return s[k]};this.set=function(k,val){s[k]=val;return this};this.clear=function(){s=Object.create(null)}} +var preparedCache = new MyMap() +var preparedSearchCache = new MyMap() +var noResults = []; noResults.total = 0 +var matchesSimple = []; var matchesStrict = [] +function cleanup() { preparedCache.clear(); preparedSearchCache.clear(); matchesSimple = []; matchesStrict = [] } +function defaultScoreFn(a) { +  var max = -9007199254740991 +  for (var i = a.length - 1; i >= 0; --i) { +    var result = a[i]; if(result === null) continue +    var score = result.score +    if(score > max) max = score +  } +  if(max === -9007199254740991) return null +  return max +} + +// prop = 'key'              2.5ms optimized for this case, seems to be about as fast as direct obj[prop] +// prop = 'key1.key2'        10ms +// prop = ['key1', 'key2']   27ms +function getValue(obj, prop) { +  var tmp = obj[prop]; if(tmp !== undefined) return tmp +  var segs = prop +  if(!Array.isArray(prop)) segs = prop.split('.') +  var len = segs.length +  var i = -1 +  while (obj && (++i < len)) obj = obj[segs[i]] +  return obj +} + +function isObj(x) { return typeof x === 'object' } // faster as a function + +// Hacked version of https://github.com/lemire/FastPriorityQueue.js +var fastpriorityqueue=function(){var r=[],o=0,e={};function n(){for(var e=0,n=r[e],c=1;c<o;){var f=c+1;e=c,f<o&&r[f].score<r[c].score&&(e=f),r[e-1>>1]=r[e],c=1+(e<<1)}for(var a=e-1>>1;e>0&&n.score<r[a].score;a=(e=a)-1>>1)r[e]=r[a];r[e]=n}return e.add=function(e){var n=o;r[o++]=e;for(var c=n-1>>1;n>0&&e.score<r[c].score;c=(n=c)-1>>1)r[n]=r[c];r[n]=e},e.poll=function(){if(0!==o){var e=r[0];return r[0]=r[--o],n(),e}},e.peek=function(e){if(0!==o)return r[0]},e.replaceTop=function(o){r[0]=o,n()},e}; +var q = fastpriorityqueue() // reuse this, except for async, it needs to make its own + +return fuzzysortNew() +}) // UMD + +// TODO: (performance) wasm version!? +// TODO: (performance) threads? +// TODO: (performance) avoid cache misses +// TODO: (performance) preparedCache is a memory leak +// TODO: (like sublime) backslash === forwardslash +// TODO: (like sublime) spaces: "a b" should do 2 searches 1 for a and 1 for b +// TODO: (scoring) garbage in targets that allows most searches to strict match need a penality +// TODO: (performance) idk if allowTypo is optimized diff --git a/pydis_site/static/js/resources/resources.js b/pydis_site/static/js/resources/resources.js index 508849e1..d6cc8128 100644 --- a/pydis_site/static/js/resources/resources.js +++ b/pydis_site/static/js/resources/resources.js @@ -8,6 +8,13 @@ var activeFilters = {      difficulty: []  }; +// Options for fuzzysort +const fuzzysortOptions = { +  allowTypo: true,             // Allow our users to make typos +  titleThreshold: -10000,      // The threshold for the fuzziness on title matches. Closer to 0 is stricter. +  descriptionThreshold: -500,  // The threshold for the fuzziness on description matches. +}; +  /* Add a filter, and update the UI */  function addFilter(filterName, filterItem) {      var filterIndex = activeFilters[filterName].indexOf(filterItem); @@ -25,6 +32,7 @@ function removeAllFilters() {          "payment-tiers": [],          difficulty: []      }; +    $("#resource-search input").val("");      updateUI();  } @@ -51,6 +59,13 @@ function noFilters() {  function deserializeURLParams() {      let searchParams = new window.URLSearchParams(window.location.search); +    // Add the search query to the search bar. +    if (searchParams.has("search")) { +        let searchQuery = searchParams.get("search"); +        $("#resource-search input").val(searchQuery); +        $(".close-filters-button").show(); +    } +      // Work through the parameters and add them to the filter object      $.each(Object.keys(activeFilters), function(_, filterType) {          let paramFilterContent = searchParams.get(filterType); @@ -62,11 +77,13 @@ function deserializeURLParams() {              // Update the corresponding filter UI, so it reflects the internal state.              let filterAdded = false;              $(paramFilterArray).each(function(_, filter) { -                // Make sure the filter is valid before we do anything. +                // Catch special cases.                  if (String(filter) === "rickroll" && filterType === "type") {                      window.location.href = "https://www.youtube.com/watch?v=dQw4w9WgXcQ";                  } else if (String(filter) === "sneakers" && filterType === "topics") {                      window.location.href = "https://www.youtube.com/watch?v=NNZscmNE9QI"; + +                // If the filter is valid, mirror it to the UI.                  } else if (validFilters.hasOwnProperty(filterType) && validFilters[filterType].includes(String(filter))) {                      let checkbox = $(`.filter-checkbox[data-filter-name='${filterType}'][data-filter-item='${filter}']`);                      let filterTag = $(`.filter-box-tag[data-filter-name='${filterType}'][data-filter-item='${filter}']`); @@ -91,10 +108,23 @@ function deserializeURLParams() {      });  } +/* Show or hide the duckies, depending on whether or not there are any resources visible. */ +function updateDuckies() { +    let visibleResources = Boolean($(".resource-box:visible").length); +    if (!visibleResources) { +        $(".no-resources-found").show(); +    } else { +        $(".no-resources-found").hide(); +    } +} + +  /* Update the URL with new parameters */  function updateURL() { -    // If there's nothing in the filters, we don't want anything in the URL. -    if (noFilters()) { +    let searchQuery = $("#resource-search input").val(); + +    // If there's no active filtering parameters, we can return early. +    if (noFilters() && searchQuery.length === 0) {          window.history.replaceState(null, document.title, './');          return;      } @@ -107,10 +137,44 @@ function updateURL() {          }      }); +    // Add the search query, if necessary. +    if (searchQuery.length > 0) { +        searchParams.set("search", searchQuery); +    } +      // Now update the URL      window.history.replaceState(null, document.title, `?${searchParams.toString()}`);  } +/* Apply search terms */ +function filterBySearch(resourceItems) { +    let searchQuery = $("#resource-search input").val(); + +    /* Show and update the tag if there's a search query */ +    if (searchQuery) { +        let tag = $(".tag.search-query"); +        let tagText = $(".tag.search-query span"); +        tagText.text(`Search: ${searchQuery}`); +        tag.show(); +        $(".close-filters-button").show(); +    } + +    resourceItems.filter(function() { +        // Get the resource title and description +        let title = $(this).attr("data-resource-name"); +        let description = $(this).find("p").text(); + +        // Run a fuzzy search. Does the title or description match the query? +        let titleMatch = fuzzysort.single(searchQuery, title, fuzzysortOptions); +        titleMatch = Boolean(titleMatch) && titleMatch.score > fuzzysortOptions.titleThreshold; + +        let descriptionMatch = fuzzysort.single(searchQuery, description, fuzzysortOptions); +        descriptionMatch = Boolean(descriptionMatch) && descriptionMatch.score > fuzzysortOptions.descriptionThreshold; + +        return titleMatch || descriptionMatch; +    }).show(); +} +  /* Update the resources to match 'active_filters' */  function updateUI() {      let resources = $('.resource-box'); @@ -118,19 +182,31 @@ function updateUI() {      let resourceTags = $('.resource-tag');      let noTagsSelected = $(".no-tags-selected.tag");      let closeFiltersButton = $(".close-filters-button"); +    let searchQuery = $("#resource-search input").val(); +    let searchTag = $(".tag.search-query");      // Update the URL to match the new filters.      updateURL();      // If there's nothing in the filters, we can return early.      if (noFilters()) { -        resources.show(); +        // If we have a searchQuery, we need to run all resources through a search. +        if (searchQuery.length > 0) { +            resources.hide(); +            noTagsSelected.hide(); +            filterBySearch(resources); +        } else { +            resources.show(); +            noTagsSelected.show(); +            closeFiltersButton.hide(); +            $(".tag.search-query").hide(); +        } +          filterTags.hide(); -        noTagsSelected.show(); -        closeFiltersButton.hide();          resourceTags.removeClass("active");          $(`.filter-checkbox:checked`).prop("checked", false); -        $(".no-resources-found").hide(); +        updateDuckies(); +          return;      } else {          // Hide everything @@ -158,9 +234,8 @@ function updateUI() {      }      // Otherwise, hide everything and then filter the resources to decide what to show. -    let hasMatches = false;      resources.hide(); -    resources.filter(function() { +    let filteredResources = resources.filter(function() {          let validation = {              topics: false,              type: false, @@ -187,20 +262,22 @@ function updateUI() {          // If validation passes, show the resource.          if (Object.values(validation).every(Boolean)) { -            hasMatches = true;              return true;          } else {              return false;          } -    }).show(); - +    }); -    // If there are no matches, show the no matches message -    if (!hasMatches) { -        $(".no-resources-found").show(); +    // Run the items we've found through the search filter, if necessary. +    if (searchQuery.length > 0) { +        filterBySearch(filteredResources);      } else { -        $(".no-resources-found").hide(); +        filteredResources.show(); +        searchTag.hide();      } + +    // Gotta update those duckies! +    updateDuckies();  }  // Executed when the page has finished loading. @@ -230,6 +307,11 @@ document.addEventListener("DOMContentLoaded", function () {          setTimeout(() => { categoryHeaders.removeClass("no-transition"); }, 10);      } +    // When you type into the search bar, trigger an UI update. +    $("#resource-search input").on("input", function() { +        updateUI(); +    }); +      // If you click on the div surrounding the filter checkbox, it clicks the corresponding checkbox.      $('.filter-panel').on("click",function(event) {          let hitsCheckbox = Boolean(String(event.target));  |