|
19 | 19 | <link rel="preconnect" href="https://fonts.googleapis.com">
|
20 | 20 | <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
21 | 21 | <link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap" rel="stylesheet">
|
| 22 | + <!-- Preview --> |
| 23 | + <meta property="og:site_name" content="CMU 15-445/645" /> |
| 24 | + <meta property="og:type" content="website" /> |
| 25 | + <meta property="og:title" content="BusTub SQL Database Shell " /> |
| 26 | + <meta property="og:url" content="https://15445.courses.cs.cmu.edu" /> |
| 27 | + <meta property="og:description" content="Interactive BusTub shell right in your browser!" /> |
| 28 | + <meta property="og:image" content="https://15445.courses.cs.cmu.edu/fall2022/images/bustub-shell.png" /> |
| 29 | + <meta name="twitter:card" content="summary_large_image"> |
| 30 | + <meta name="twitter:site" content="@CMUDB"> |
| 31 | + <meta name="twitter:creator" content="@CMUDB"> |
| 32 | + <meta name="twitter:domain" content="."> |
| 33 | + <meta property="twitter:label1" content="Semester?" /> |
| 34 | + <meta property="twitter:data1" content="Fall 2022" /> |
| 35 | + <meta property="twitter:label1" content="Relational?" /> |
| 36 | + <meta property="twitter:data1" content="Hell Yes" /> |
22 | 37 | </head>
|
23 | 38 |
|
24 | 39 | <body>
|
|
110 | 125 | line = ""
|
111 | 126 | }
|
112 | 127 | }, {
|
113 |
| - greetings: |
114 |
| - `Welcome to the BusTub shell! \u{1F68C}\u{1F6C1} |
| 128 | + greetings: `[[@;;;;bustub.svg]]`, |
| 129 | + prompt: () => line.length == 0 ? "[[b;;]bustub> ]" : "[[b;;]... ]" |
| 130 | + }) |
| 131 | + term.echo(`<hr><h1>Live Database Shell</h1>`, { raw: true }) |
| 132 | + |
| 133 | + term.echo(` |
| 134 | +[[b;;]Solution Version:] ${BUSTUB_PRIVATE_VERSION_VAR} · [[b;;]BusTub Version:] ${BUSTUB_PUBLIC_VERSION_VAR} · [[b;;]Built Date:] ${BUSTUB_BUILD_TIME_VAR} |
115 | 135 |
|
116 |
| -BusTub is a relational database management system built at Carnegie Mellon University for the Introduction to Database Systems (15-445/645) course. This system was developed for educational purposes and should not be used in production environments. [[!;;;;https://github.com/cmu-db/bustub]BusTub on GitHub] [[!;;;;https://15445.courses.cs.cmu.edu/]Course Website] [[!;;;;https://github.com/cmu-db/bustub/issues/new]Report Bugs] |
| 136 | +BusTub is a relational database management system built at Carnegie Mellon University for the Introduction to Database Systems (15-445/645) course. This system was developed for educational purposes and should not be used in production environments. [[[!;;;;https://github.com/cmu-db/bustub]BusTub on GitHub]] [[[!;;;;https://15445.courses.cs.cmu.edu/]Course Website]] [[[!;;;;https://github.com/cmu-db/bustub/issues/new]Report Bugs]] |
117 | 137 |
|
118 | 138 | Use \\help to learn about the usage. Use \\clear to clear the page.
|
119 | 139 |
|
120 |
| -This is BusTub reference solution running in your browser. Solution Version: ${BUSTUB_PRIVATE_VERSION_VAR}, BusTub Version: ${BUSTUB_PUBLIC_VERSION_VAR}, built at ${BUSTUB_BUILD_TIME_VAR}. |
121 |
| -`, |
122 |
| - prompt: () => line.length == 0 ? "[[b;;]bustub> ]" : "[[b;;]... ]" |
123 |
| - }) |
| 140 | +This is BusTub reference solution running in your browser. |
| 141 | +`) |
124 | 142 | })
|
125 | 143 | </script>
|
126 | 144 |
|
|
0 commit comments