A GUI web-based tool to manage gem5 Resources. Can manage in two data sources, a MongoDB database or a JSON file. The JSON file can be both local or remote. JSON files are written to a temporary file before writing to the local file. The Manager supports the following functions on a high-level: - searching for a resource by ID - navigating to a resource version - adding a new resource - adding a new version to a resource - editing any information within a searched resource (while enforcing the gem5 Resources schema found at: https://resources.gem5.org/gem5-resources-schema.json) - deleting a resource version - undo and redo up to the last 10 operations The Manager also allows a user to save a session through localStorage and re-access it through a password securely. This patch also provides a Command Line Interface tool mainly for MongoDB-related functions. This CLI tool can currently: - backup a MongoDB collection to a JSON file - restore a JSON file to a MongoDB collection - search for a resource through its ID and view its JSON object - make a JSON file that is compliant with the gem5 Resources Schema Co-authored-by: Parth Shah <helloparthshah@gmail.com> Co-authored-by: Harshil2107 <harshilp2107@gmail.com> Co-authored-by: aarsli <arsli@ucdavis.edu> Change-Id: I8107f609c869300b5323d4942971a7ce7c28d6b5 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/71218 Reviewed-by: Bobby Bruce <bbruce@ucdavis.edu> Tested-by: kokoro <noreply+kokoro@google.com> Maintainer: Bobby Bruce <bbruce@ucdavis.edu>
21 lines
593 B
HTML
21 lines
593 B
HTML
{% extends 'base.html' %} {% block head %}
|
|
<title>Page Not Found</title>
|
|
{% endblock %} {% block body %}
|
|
<main class="container-fluid calc-main-height">
|
|
<div
|
|
class="d-flex flex-column align-items-center justify-content-center"
|
|
style="height: inherit"
|
|
>
|
|
<h1 style="color: #0095af; font-size: 10rem">404</h1>
|
|
<p class="main-text-regular text-center">
|
|
The page you are looking for does not seem to exist.
|
|
</p>
|
|
<a
|
|
href="/"
|
|
class="btn btn-outline-primary main-text-regular btn-box-shadow mt-2 mb-2"
|
|
>Home</a
|
|
>
|
|
</div>
|
|
</main>
|
|
{% endblock %}
|