Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ frontend/app/coverage/
frontend/app/.jest-cache/

make_md.py
python_front_*
browser_based_python_*
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# [Python Front](https://github.com/europanite/python_front "Python Front")
# [Browser Based Python](https://github.com/europanite/browser_based_python "Browser Based Python")

[![CI](https://github.com/europanite/python_front/actions/workflows/ci.yml/badge.svg)](https://github.com/europanite/python_front/actions/workflows/ci.yml)
[![Frontend Tests via Docker](https://github.com/europanite/python_front/actions/workflows/docker.yml/badge.svg)](https://github.com/europanite/python_front/actions/workflows/docker.yml)
[![Deploy Expo Web to GitHub Pages](https://github.com/europanite/python_front/actions/workflows/deploy-pages.yml/badge.svg)](https://github.com/europanite/python_front/actions/workflows/deploy-pages.yml)
[![CI](https://github.com/europanite/browser_based_python/actions/workflows/ci.yml/badge.svg)](https://github.com/europanite/browser_based_python/actions/workflows/ci.yml)
[![Frontend Tests via Docker](https://github.com/europanite/browser_based_python/actions/workflows/docker.yml/badge.svg)](https://github.com/europanite/browser_based_python/actions/workflows/docker.yml)
[![Deploy Expo Web to GitHub Pages](https://github.com/europanite/browser_based_python/actions/workflows/deploy-pages.yml/badge.svg)](https://github.com/europanite/browser_based_python/actions/workflows/deploy-pages.yml)

A browser based Python playground.

!["web_ui"](./assets/images/web_ui.png)

## Demo
[Python Front](https://europanite.github.io/python_front/)
[Python Front](https://europanite.github.io/browser_based_python/)

---

Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Supported Versions

The following table shows which versions of `python_front` are currently being supported with security updates.
The following table shows which versions of `browser_based_python` are currently being supported with security updates.

| Version | Supported |
|---------|--------------------|
Expand Down Expand Up @@ -35,4 +35,4 @@ If you discover a security vulnerability within this project, please help us kee

## Acknowledgements

We deeply appreciate the efforts of security researchers and contributors who help us improve the security of `python_front`.
We deeply appreciate the efforts of security researchers and contributors who help us improve the security of `browser_based_python`.
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
title: "python_front"
title: "browser_based_python"
description: "A playground for Python"
baseurl: "/python_front"
baseurl: "/browser_based_python"
url: "https://europanite.github.io"
theme: minima
markdown: kramdown
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"edgeToEdgeEnabled": true
},
"experiments": {
"baseUrl": "/python_front"
"baseUrl": "/browser_based_python"
},
"web": {
"favicon": "./assets/favicon.png",
Expand Down
4 changes: 2 additions & 2 deletions frontend/app/public/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<meta charset="utf-8"><title>Redirecting...</title>
<script>
(function(){
var path = window.location.pathname.replace(/\/python_front/, '');
var path = window.location.pathname.replace(/\/browser_based_python/, '');
var search = window.location.search || '';
var hash = window.location.hash || '';
var url = '/python_front/?redirect=' + encodeURIComponent(path + search + hash);
var url = '/browser_based_python/?redirect=' + encodeURIComponent(path + search + hash);
window.location.replace(url);
})();
</script>
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/screens/HomeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export default function HomeScreen() {
<div style={styles.toolbar}>
<h1 style={styles.title as any}>
<a
href="https://github.com/europanite/python_front/"
href="https://github.com/europanite/browser_based_python/"
target="_blank"
rel="noopener noreferrer"
style={{ color: "inherit", textDecoration: "none" }}
Expand Down
Loading