This repository has been archived by the owner on Jun 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 502
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
RunestoneServer-6.2.2 | ||
|
||
- bug fixes | ||
|
||
RunestoneServer-6.2.0 | ||
|
||
- Support for grading microparsons | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
# ================ | ||
[tool.poetry] | ||
name = "runestone_poetry_project" | ||
version = "6.2.1" | ||
version = "6.2.2" | ||
description = "A web2py-based server for the Runestone e-book system." | ||
authors = ["Brad Miller <[email protected]>", "Bryan A. Jones <bjones AT ece DOT msstate DOT edu"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import json | ||
import pyclip | ||
|
||
import_file = "/Users/bmiller/Runestone/RunestoneComponents/runestone/dist/webpack_static_imports.json" | ||
|
||
imports = json.load(open(import_file, "r")) | ||
res = "" | ||
for f in imports["js"]: | ||
res += f"""<script src="_static/{f}"></script>\n""" | ||
|
||
for f in imports["css"]: | ||
res += f"""<link rel="stylesheet" type="text/css" href="_static/{f}" >\n""" | ||
|
||
print(res) | ||
pyclip.copy(res) | ||
print("The New imports on on the clipboard.") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters