diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-06-27 22:52:50 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-06-27 22:52:50 +0200 |
| commit | 9a19a0494ef51cdac9a78e24d517ca48ba44c453 (patch) | |
| tree | 8eaae12d8047a40e29d3ea7ff3116b5c869e04bd /public/422.html | |
| parent | 85a01e35274b8d4d4165a7b26bd7986e211246bb (diff) | |
| parent | 1853082fcd8c067390c246f9daa01a9b47387497 (diff) | |
Migration from Rails 2.3.5 to Rails 8.1 successful.
Merging dev branch.
Diffstat (limited to 'public/422.html')
| -rw-r--r-- | public/422.html | 159 |
1 files changed, 132 insertions, 27 deletions
diff --git a/public/422.html b/public/422.html index b54e4a3..f12fb4a 100644 --- a/public/422.html +++ b/public/422.html | |||
| @@ -1,30 +1,135 @@ | |||
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | 1 | <!doctype html> |
| 2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
| 3 | 2 | ||
| 4 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | 3 | <html lang="en"> |
| 5 | 4 | ||
| 6 | <head> | 5 | <head> |
| 7 | <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | ||
| 8 | <title>The change you wanted was rejected (422)</title> | ||
| 9 | <style type="text/css"> | ||
| 10 | body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; } | ||
| 11 | div.dialog { | ||
| 12 | width: 25em; | ||
| 13 | padding: 0 4em; | ||
| 14 | margin: 4em auto 0 auto; | ||
| 15 | border: 1px solid #ccc; | ||
| 16 | border-right-color: #999; | ||
| 17 | border-bottom-color: #999; | ||
| 18 | } | ||
| 19 | h1 { font-size: 100%; color: #f00; line-height: 1.5em; } | ||
| 20 | </style> | ||
| 21 | </head> | ||
| 22 | 6 | ||
| 23 | <body> | 7 | <title>The change you wanted was rejected (422 Unprocessable Entity)</title> |
| 24 | <!-- This file lives in public/422.html --> | 8 | |
| 25 | <div class="dialog"> | 9 | <meta charset="utf-8"> |
| 26 | <h1>The change you wanted was rejected.</h1> | 10 | <meta name="viewport" content="initial-scale=1, width=device-width"> |
| 27 | <p>Maybe you tried to change something you didn't have access to.</p> | 11 | <meta name="robots" content="noindex, nofollow"> |
| 28 | </div> | 12 | |
| 29 | </body> | 13 | <style> |
| 30 | </html> \ No newline at end of file | 14 | |
| 15 | *, *::before, *::after { | ||
| 16 | box-sizing: border-box; | ||
| 17 | } | ||
| 18 | |||
| 19 | * { | ||
| 20 | margin: 0; | ||
| 21 | } | ||
| 22 | |||
| 23 | html { | ||
| 24 | font-size: 16px; | ||
| 25 | } | ||
| 26 | |||
| 27 | body { | ||
| 28 | background: #FFF; | ||
| 29 | color: #261B23; | ||
| 30 | display: grid; | ||
| 31 | font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Aptos, Roboto, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; | ||
| 32 | font-size: clamp(1rem, 2.5vw, 2rem); | ||
| 33 | -webkit-font-smoothing: antialiased; | ||
| 34 | font-style: normal; | ||
| 35 | font-weight: 400; | ||
| 36 | letter-spacing: -0.0025em; | ||
| 37 | line-height: 1.4; | ||
| 38 | min-height: 100dvh; | ||
| 39 | place-items: center; | ||
| 40 | text-rendering: optimizeLegibility; | ||
| 41 | -webkit-text-size-adjust: 100%; | ||
| 42 | } | ||
| 43 | |||
| 44 | #error-description { | ||
| 45 | fill: #d30001; | ||
| 46 | } | ||
| 47 | |||
| 48 | #error-id { | ||
| 49 | fill: #f0eff0; | ||
| 50 | } | ||
| 51 | |||
| 52 | @media (prefers-color-scheme: dark) { | ||
| 53 | body { | ||
| 54 | background: #101010; | ||
| 55 | color: #e0e0e0; | ||
| 56 | } | ||
| 57 | |||
| 58 | #error-description { | ||
| 59 | fill: #FF6161; | ||
| 60 | } | ||
| 61 | |||
| 62 | #error-id { | ||
| 63 | fill: #2c2c2c; | ||
| 64 | } | ||
| 65 | } | ||
| 66 | |||
| 67 | a { | ||
| 68 | color: inherit; | ||
| 69 | font-weight: 700; | ||
| 70 | text-decoration: underline; | ||
| 71 | text-underline-offset: 0.0925em; | ||
| 72 | } | ||
| 73 | |||
| 74 | b, strong { | ||
| 75 | font-weight: 700; | ||
| 76 | } | ||
| 77 | |||
| 78 | i, em { | ||
| 79 | font-style: italic; | ||
| 80 | } | ||
| 81 | |||
| 82 | main { | ||
| 83 | display: grid; | ||
| 84 | gap: 1em; | ||
| 85 | padding: 2em; | ||
| 86 | place-items: center; | ||
| 87 | text-align: center; | ||
| 88 | } | ||
| 89 | |||
| 90 | main header { | ||
| 91 | width: min(100%, 12em); | ||
| 92 | } | ||
| 93 | |||
| 94 | main header svg { | ||
| 95 | height: auto; | ||
| 96 | max-width: 100%; | ||
| 97 | width: 100%; | ||
| 98 | } | ||
| 99 | |||
| 100 | main article { | ||
| 101 | width: min(100%, 30em); | ||
| 102 | } | ||
| 103 | |||
| 104 | main article p { | ||
| 105 | font-size: 75%; | ||
| 106 | } | ||
| 107 | |||
| 108 | main article br { | ||
| 109 | display: none; | ||
| 110 | |||
| 111 | @media(min-width: 48em) { | ||
| 112 | display: inline; | ||
| 113 | } | ||
| 114 | } | ||
| 115 | |||
| 116 | </style> | ||
| 117 | |||
| 118 | </head> | ||
| 119 | |||
| 120 | <body> | ||
| 121 | |||
| 122 | <!-- This file lives in public/422.html --> | ||
| 123 | |||
| 124 | <main> | ||
| 125 | <header> | ||
| 126 | <svg height="172" viewBox="0 0 480 172" width="480" xmlns="http://www.w3.org/2000/svg"><path d="m124.48 3.00509-45.6889 100.02991h26.2239v-28.1168h38.119v28.1168h21.628v35.145h-21.628v30.82h-37.308v-30.82h-72.1833v-31.901l50.2851-103.27391zm130.453 51.63681c0-8.9215-6.218-15.4099-15.681-15.4099-10.273 0-15.95 7.5698-16.491 16.4913h-44.608c3.244-30.8199 25.683-55.421707 61.099-55.421707 36.498 0 59.477 20.816907 59.477 51.636807 0 21.3577-14.869 36.7676-31.901 52.7186l-27.305 27.035h59.747v37.308h-120.306v-27.846l57.044-56.7736c11.084-11.8954 18.925-20.0059 18.925-29.7385zm140.455 0c0-8.9215-6.218-15.4099-15.68-15.4099-10.274 0-15.951 7.5698-16.492 16.4913h-44.608c3.245-30.8199 25.684-55.421707 61.1-55.421707 36.497 0 59.477 20.816907 59.477 51.636807 0 21.3577-14.87 36.7676-31.902 52.7186l-27.305 27.035h59.747v37.308h-120.305v-27.846l57.043-56.7736c11.085-11.8954 18.925-20.0059 18.925-29.7385z" id="error-id"/><path d="m19.3936 103.554c-8.9715 0-14.84183-5.0952-14.84183-14.4544v-20.1029h8.86083v19.3276c0 4.8181 2.2706 7.3102 5.981 7.3102 3.6551 0 5.9257-2.4921 5.9257-7.3102v-19.3276h8.8608v20.1583c0 9.3038-5.8149 14.399-14.7865 14.399zm18.734-.554v-24.921h8.6947v2.1598c1.3845-1.5506 3.8212-2.7136 6.701-2.7136 5.538 0 8.8054 3.5997 8.8054 9.1377v16.3371h-8.6393v-14.2327c0-2.049-1.0522-3.5443-3.2674-3.5443-1.7168 0-3.1567.9969-3.5997 2.7136v15.0634zm36.8584-1.994v10.799h-8.6946v-33.726h8.6946v1.9937c1.163-1.3291 3.5997-2.5475 6.1472-2.5475 7.1994 0 11.1314 5.8703 11.1314 13.0143 0 7.0886-3.932 13.0145-11.1314 13.0145-2.5475 0-4.9842-1.219-6.1472-2.548zm0-13.7893v6.5902c.6646 1.3845 2.1599 2.326 3.8213 2.326 2.9905 0 4.7626-2.3814 4.7626-5.5934s-1.7721-5.6488-4.7626-5.6488c-1.7168 0-3.1567.9969-3.8213 2.326zm36.789-9.2485v8.3624c-1.052-.5538-2.215-.7753-3.6-.7753-2.381 0-3.987 1.0522-4.43 2.8244v14.6203h-8.6949v-24.921h8.6949v2.2152c1.218-1.6614 3.156-2.769 5.648-2.769 1.108 0 1.994.2215 2.382.443zm26.769 12.5713c0 7.6978-5.15 13.0145-12.737 13.0145-7.532 0-12.738-5.3167-12.738-13.0145s5.206-13.0143 12.738-13.0143c7.587 0 12.737 5.3165 12.737 13.0143zm-8.528 0c0-3.4336-1.496-5.8703-4.209-5.8703-2.659 0-4.154 2.4367-4.154 5.8703s1.495 5.8149 4.154 5.8149c2.713 0 4.209-2.3813 4.209-5.8149zm10.352 0c0-7.6978 5.095-13.0143 12.571-13.0143 6.701 0 10.855 3.9874 11.574 9.8023h-8.417c-.222-1.4953-1.385-2.6029-3.157-2.6029-2.437 0-3.987 2.2706-3.987 5.8149s1.55 5.7595 3.987 5.7595c1.772 0 2.935-1.0522 3.157-2.5475h8.417c-.719 5.7596-4.873 9.8025-11.574 9.8025-7.476 0-12.571-5.3167-12.571-13.0145zm42.013 3.7658h8.03c-.886 5.7597-5.206 9.2487-11.685 9.2487-7.643 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.316-13.0143 12.516-13.0143 7.642 0 11.962 5.095 11.962 12.5159v2.1598h-16.116c.277 2.9905 1.828 4.5965 4.32 4.5965 1.772 0 3.156-.7753 3.655-2.4921zm-3.821-10.0237c-2.049 0-3.434 1.2737-3.988 3.5997h7.532c-.111-2.0491-1.385-3.5997-3.544-3.5997zm13.428 11.0206h8.473c.387 1.3845 1.606 2.1598 3.156 2.1598 1.44 0 2.548-.5538 2.548-1.7168 0-.9414-.72-1.2737-1.938-1.5506l-4.874-.9969c-4.153-.886-6.867-2.8797-6.867-7.2547 0-5.3165 4.763-8.4178 10.633-8.4178 6.812 0 10.522 3.1567 11.297 8.0855h-8.03c-.277-1.0522-1.052-1.9937-3.046-1.9937-1.273 0-2.326.5538-2.326 1.6614 0 .7753.554 1.163 1.717 1.3845l4.929 1.163c4.541 1.0522 6.978 3.4335 6.978 7.4763 0 5.3168-4.818 8.2518-10.91 8.2518-6.369 0-10.965-2.88-11.74-8.2518zm24.269 0h8.474c.387 1.3845 1.606 2.1598 3.156 2.1598 1.44 0 2.548-.5538 2.548-1.7168 0-.9414-.72-1.2737-1.939-1.5506l-4.873-.9969c-4.154-.886-6.867-2.8797-6.867-7.2547 0-5.3165 4.763-8.4178 10.633-8.4178 6.812 0 10.522 3.1567 11.297 8.0855h-8.03c-.277-1.0522-1.052-1.9937-3.046-1.9937-1.273 0-2.326.5538-2.326 1.6614 0 .7753.554 1.163 1.717 1.3845l4.929 1.163c4.541 1.0522 6.978 3.4335 6.978 7.4763 0 5.3168-4.818 8.2518-10.91 8.2518-6.369 0-10.965-2.88-11.741-8.2518zm47.918 7.6978h-8.363v-1.274c-.831.831-3.323 1.717-5.981 1.717-4.929 0-9.082-2.769-9.082-8.0301 0-4.818 4.153-7.9193 9.581-7.9193 2.049 0 4.485.6646 5.482 1.3845v-1.606c0-1.606-.941-2.9905-3.046-2.9905-1.606 0-2.547.7199-2.935 1.8275h-8.196c.72-4.8181 4.984-8.6393 11.408-8.6393 7.089 0 11.132 3.7659 11.132 10.2453zm-8.363-6.9779v-1.4399c-.554-1.0522-2.049-1.7167-3.655-1.7167-1.717 0-3.434.7199-3.434 2.3813 0 1.7168 1.717 2.4367 3.434 2.4367 1.606 0 3.101-.6645 3.655-1.6614zm20.742 4.9839v1.994h-8.695v-35.997h8.695v13.0697c1.163-1.3291 3.6-2.5475 6.147-2.5475 7.2 0 11.132 5.8149 11.132 13.0143s-3.932 13.0145-11.132 13.0145c-2.547 0-4.984-1.219-6.147-2.548zm0-13.7893v6.5902c.665 1.3845 2.105 2.326 3.821 2.326 2.991 0 4.763-2.3814 4.763-5.5934s-1.772-5.6488-4.763-5.6488c-1.661 0-3.156.9969-3.821 2.326zm28.759-20.2137v35.997h-8.695v-35.997zm19.172 27.3023h8.03c-.886 5.7597-5.206 9.2487-11.685 9.2487-7.643 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.316-13.0143 12.515-13.0143 7.643 0 11.962 5.095 11.962 12.5159v2.1598h-16.115c.277 2.9905 1.827 4.5965 4.32 4.5965 1.772 0 3.156-.7753 3.655-2.4921zm-3.822-10.0237c-2.049 0-3.433 1.2737-3.987 3.5997h7.532c-.111-2.0491-1.385-3.5997-3.545-3.5997zm25.461-15.2849h24.311v7.6424h-15.561v5.3165h14.232v7.4763h-14.232v5.8703h15.561v7.6978h-24.311zm27.942 34.0033v-24.921h8.694v2.1598c1.385-1.5506 3.822-2.7136 6.701-2.7136 5.538 0 8.806 3.5997 8.806 9.1377v16.3371h-8.639v-14.2327c0-2.049-1.053-3.5443-3.268-3.5443-1.717 0-3.157.9969-3.6 2.7136v15.0634zm29.991-8.5839v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.206v6.7564h-5.206v8.307c0 1.9383.941 2.769 2.658 2.769.942 0 1.994-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.87 0-9.193-2.769-9.193-9.0819zm26.161-16.3371v24.921h-8.694v-24.921zm.61-6.7564c0 2.8244-2.271 4.652-4.929 4.652s-4.929-1.8276-4.929-4.652c0-2.8797 2.271-4.7073 4.929-4.7073s4.929 1.8276 4.929 4.7073zm5.382 23.0935v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.206v6.7564h-5.206v8.307c0 1.9383.941 2.769 2.658 2.769.941 0 1.994-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.87 0-9.193-2.769-9.193-9.0819zm29.22 17.3889h-8.584l3.655-9.414-9.303-24.312h9.026l4.763 14.1773 4.652-14.1773h8.639z" id="error-description"/></svg> | ||
| 127 | </header> | ||
| 128 | <article> | ||
| 129 | <p><strong>The change you wanted was rejected.</strong> Maybe you tried to change something you didn't have access to. If you're the application owner check the logs for more information.</p> | ||
| 130 | </article> | ||
| 131 | </main> | ||
| 132 | |||
| 133 | </body> | ||
| 134 | |||
| 135 | </html> | ||
