Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Many tweaks #2

Merged
merged 1 commit into from
Nov 4, 2024
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
89 changes: 53 additions & 36 deletions makesite.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,50 +45,63 @@
def create_menu(page):
""" Create the menu for the given page.
"""
menu = [""]

menu.append('<span class="header">Pages</span>')
for title, target in NAV.items():
if isinstance(target, str):
if target.startswith(("https://", "http://", "/")):
menu.append(f"<a href='{target}'>{title}</a>")
menu = ""

if True:
menuitems = []
menuitems.append('<span class="header">Pages</span>')
for title, target in NAV.items():
if isinstance(target, str):
if target.startswith(("https://", "http://", "/")):
menuitems.append(f"<a href='{target}'>{title}</a>")
else:
menuitems.append(f"<a href='{target}.html'>{title}</a>")
if target == page.name:
menuitems[-1] = menuitems[-1].replace("<a ", '<a class="current" ')
elif isinstance(target, dict):
menuitems.append(f"<a href='{target.get('', '#')}.html'>{title}</a>")
if target.get("", None) == page.name:
menuitems[-1] = menuitems[-1].replace("<a ", '<a class="current" ')
if True: # any(page.name == subtarget for subtarget in target.values()):
for subtitle, subtarget in target.items():
if not subtitle:
continue
if subtarget.startswith(("https://", "http://", "/")):
menuitems.append(f"<a class='sub' href='{subtarget}'>{subtitle}</a>")
else:
menuitems.append(
f"<a class='sub' href='{subtarget}.html'>{subtitle}</a>"
)
if subtarget == page.name:
menuitems[-1] = menuitems[-1].replace("class='", "class='current ")
else:
menu.append(f"<a href='{target}.html'>{title}</a>")
if target == page.name:
menu[-1] = menu[-1].replace("<a ", '<a class="current" ')
elif isinstance(target, dict):
menu.append(f"<a href='{target.get('', '#')}.html'>{title}</a>")
if target.get("", None) == page.name:
menu[-1] = menu[-1].replace("<a ", '<a class="current" ')
if True: # any(page.name == subtarget for subtarget in target.values()):
for subtitle, subtarget in target.items():
if not subtitle:
continue
if subtarget.startswith(("https://", "http://", "/")):
menu.append(f"<a class='sub' href='{subtarget}'>{subtitle}</a>")
else:
menu.append(
f"<a class='sub' href='{subtarget}.html'>{subtitle}</a>"
)
if subtarget == page.name:
menu[-1] = menu[-1].replace("class='", "class='current ")
else:
raise RuntimeError(f"Unexpected NAV entry {type(target)}")
raise RuntimeError(f"Unexpected NAV entry {type(target)}")

menu += "<div class='block1'>"
menu += "<br>".join(menuitems)
menu += "</div>"

subtitles = [title for level, title in page.headers if level == 2]
if subtitles:
menu.append("<br /><span class='header'>Current page</span>")
menu += [
menuitems = []
menuitems.append("<span class='header'>Current page</span>")
menuitems += [
f"<a class='sub' href='#{title.lower()}'>{title}</a>" for title in subtitles
]

if NEWS:
menu.append('<br /><span class="header">News</span>')
for title, url in NEWS.items():
# menu.append(f"<a class='sub' href='{url}'>{title}</a>")
menu.append(f"<a href='{url}'>{title}</a>")
menu += "<br>"
menu += "<div class='block2'>"
menu += "<br>".join(menuitems)
menu += "</div>"

# if NEWS:
# menuitems = []
# menuitems.append('<br /><span class="header">News</span>')
# for title, url in NEWS.items():
# # menuitems.append(f"<a class='sub' href='{url}'>{title}</a>")
# menuitems.append(f"<a href='{url}'>{title}</a>")

return "<br />".join(menu)
return menu


def create_blog_relatated_pages(posts):
Expand Down Expand Up @@ -345,6 +358,10 @@ def _split(self):
level = len(line.split(" ")[0])
title = line.split(" ", 1)[1]
title_short = "".join(c for c in title if ord(c) < 256).strip()
while "<i" in title_short:
i1 = title_short.find("<i")
i2 = title_short.find("</i>", i1)
title_short = title_short[:i1] + title_short[i2+4:]
title_short = title_short.split("(")[0].split("<")[0].strip().replace("`", "")
headers.append((level, title_short))
parts.append((level, title_short, title))
Expand Down
141 changes: 114 additions & 27 deletions pages/index.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,134 @@
<img src='pygfx.png' width='96px' height='96px' />
<span style='font-size:64px; font-family:Consolas, "DejaVu Sans Mono", Monaco, "Courier New", Courier, monospace; position: relative; top: -20px; left: 10px;'>pygfx-org</span>
<center>
<img src='pygfx1024.png' width='96px' height='96px' />
<span style='font-size:100px; position: relative; top: -20px; left: 10px;'>Pygfx</span><br>
<i style='font-size:110%;'>A powerful and reliable render engine for Python</i>

*The collective behind the Pygfx render engine and associated projects.*

## 💫 Projects
<img src='https://img.shields.io/badge/uses-webgpu-blue?style=flat'/>
<img src='https://img.shields.io/github/v/release/pygfx/pygfx?style=flat&label=version'/>
<img src='https://img.shields.io/github/stars/pygfx/pygfx?style=flat'/>

<div class=projectbox>
<img class='stars-badge' src='https://img.shields.io/github/stars/pygfx/pygfx'/>
<h3>Pygfx</h3>
<i>A powerful render engine for Python</i><br><br>
<img src='gh32.png' height=16 /> <a href="https://github.com/pygfx/pygfx">github.com/pygfx/<b>pygfx</b></a><br>
<img src='rtd.png' height=16 /> <a href="https://pygfx.readthedocs.io"><b>pygfx</b>.readthedocs.io</a><br>
</div>
<p style='text-align:left; max-width:600px; margin: 2em 1em;'>
Pygfx (py-graphics) is built on WebGPU, enabling superior performance and reliability compared to OpenGL-based solutions. It is designed for simplicity and versatility: with its modular architecture, you can effortlessly assemble graphical scenes for diverse applications, from scientific visualization to video game rendering.
</p>


<a class='button' href='https://github.com/pygfx/pygfx'><i class='fab'></i> Source</a>
<a class='button' href='https://pygfx.readthedocs.io/stable/_gallery/index.html'><i class='fas'></i> Gallery</a>
<a class='button' href='https://pygfx.readthedocs.io'><i class='fas'></i> Documentation</a>
<a class='button yellow' href='sponsor.html'><i class='fas'></i> Support & Sponsoring</a>

</center>


## <i class='fas'></i> News

* `25-09-2024` Released [pygfx v0.5.0](https://github.com/pygfx/pygfx/releases/tag/v0.5.0)
* `17-09-2024` Released [wgpu-py v0.18.1](https://github.com/pygfx/wgpu-py/releases/tag/v0.18.1)


## <i class='fas'></i> Getting started

Pygfx runs almost anywhere, you don't need a fancy GPU.

* Install with ``pip install pygfx glfw``.
* Check out the [guide](https://docs.pygfx.org/stable/guide.html).
* Have a look at the examples in the [gallery](https://pygfx.readthedocs.io/stable/_gallery/index.html).


## <i class='fas'></i> Projects

The following projects fall under the pygfx.org umbrella:

<div class='project-container'>

<div class=projectbox>
<img class='stars-badge' src='https://img.shields.io/github/stars/pygfx/wgpu-py'/>
<h3>wgpu-py</h3>
<i>WebGPU for Python</i><br><br>
<img src='gh32.png' height=16 /> <a href="https://github.com/pygfx/wgpu">github.com/pygfx/<b>wgpu</b></a><br>
<img src='rtd.png' height=16 /> <a href="https://wgpu-py.readthedocs.io"><b>wgpu-py</b>.readthedocs.io</a><br>
<div class=projectbox>
<a class='button' href='https://pygfx.readthedocs.io'><i class='fas'></i> Docs</a>
<a class='button' href='https://github.com/pygfx/pygfx'><i class='fab'></i> Source</a>
<h3>Pygfx</h3>
A powerful and reliable render engine for Python. The main project.
</div>

<div class=projectbox>
<a class='button' href='https://wgpu-py.readthedocs.io'><i class='fas'></i> Docs</a>
<a class='button' href='https://github.com/pygfx/wgpu-py'><i class='fab'></i> Source</a>
<h3>wgpu-py</h3>
WebGPU for Python. Pygfx uses this to control your GPU.
</div>

<div class=projectbox>
<a class='button' href='https://rendercanvas.readthedocs.io'><i class='fas'></i> Docs</a>
<a class='button' href='https://github.com/pygfx/rendercanvas'><i class='fab'></i> Source</a>
<h3>RenderCanvas</h3>
One canvas API, multiple backends. Enables Pygfx to
render into an Qt/wx application, Jupyter notebook, and more.
</div>

<div class=projectbox>
<a class='button' href='https://pylinalg.readthedocs.io'><i class='fas'></i> Docs</a>
<a class='button' href='https://github.com/pygfx/pylinalg'><i class='fab'></i> Source</a>
<h3>pylinalg</h3>
Linear algebra utilities for Python. Used in Pygfx for its transform system.
</div>
</div>

<div class=projectbox>
<h3>Other</h3>
<i>Projects that we also contribute to</i><br><br>
<img src='gh32.png' height=16 /> <a href='https://github.com/gfx-rs/wgpu-native'>wgpu-native</a><br>
<img src='gh32.png' height=16 /> <a href='https://github.com/vispy/jupyter_rfb'>jupyter_rfb</a><br>
<img src='gh32.png' height=16 /> <a href='https://github.com/pygfx/pylinalg'>pylinalg</a>
We also help maintain the following projects:

<div class='project-container'>
<div class=projectbox>
<a class='button' href='https://github.com/gfx-rs/wgpu-native'><i class='fab'></i> Source</a>
<h3>wgpu-native</h3>
Provides a C-API for WebGPU by implementing <i>webgpu.h</i>. Wrapped by wgpu-py.
</div>

<div class=projectbox>
<a class='button' href='https://github.com/vispy/jupyter_rfb'><i class='fab'></i> Source</a>
<h3>jupyter_rfb</h3>
A remote frame-buffer for Jupyter. Enables Jupyter support in RenderCanvas.
</div>
</div>


## 🚀 Mission
## <i class='fas'></i> Mission

We are dedicated to bring powerful and reliable visualization to the Python world.
We believe that WebGPU is the future for graphics and bring it to Python with the wgpu-py library. On top of that, we build Pygfx: a modern, versatile, and Pythonic rendering engine.

Pygfx provides a basis on top of which a multitude of visualizations become possible. From applications to libraries, from games to plotting.
Pygfx is expressive in what you can do with it, but does not try hard to reduce the number of code-lines. We deliberately leave higher-level (domain specific) API's to downstream libraries.


## <i class='fas'></i> Ecosystem

The following notable projects build on top of Pygfx or wgpu-py:

<div class='project-container'>

<div class='project-container'>
<div class=projectbox>
<a class='button' href='http://www.fastplotlib.org/ver/dev'><i class='fas'></i> Docs</a>
<a class='button' href='https://github.com/fastplotlib/fastplotlib'><i class='fab'></i> Source</a>
<h3>Fastplotlib</h3>
Next-gen plotting library built on Pygfx.
</div>
</div>

<div class='project-container'>
<div class=projectbox>
<a class='button' href='https://github.com/pygfx/shadertoy'><i class='fab'></i> Source</a>
<h3>Shadertoy</h3>
Shadertoy implementation based on wgpu-py
</div>
</div>

</div>


<a name='sponsors' />

## ❤️ Current sponsors
## <i class='fas'></i> Current sponsors

Pygfx and wgpu are open source and free to use. To develop these projects we rely on funding from our sponsors. The more groups "chip in", the more time we can spend on moving the projects forwards. Recurring funding is especially welcome. [Learn more ...](sponsor.html)
Pygfx is open source and free to use. To develop these projects we rely on funding from our sponsors. The more groups contribute, the more time we can spend on moving these projects forwards. [Learn more ...](sponsor.html)

<div class=sponsorbox>
<h3>Ramona optics</h3>
Expand All @@ -57,7 +144,7 @@ Pygfx and wgpu are open source and free to use. To develop these projects we rel



## 👥 Team
## <i class='fas'></i> Core team

<div class=profilebox>
<img class='profile' src='https://github.com/almarklein.png' /><br>
Expand Down
85 changes: 62 additions & 23 deletions pages/sponsor.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,87 @@
<img src='pygfx.png' width='96px' height='96px' />
<img src='pygfx1024.png' width='96px' height='96px' />

# Sponsoring Pygfx
# Sponsoring / support contracts


## 🧑‍🤝‍🧑 Keep Pygfx independent and active
## <i class='fas'></i> Keep Pygfx independent

Maintaining and growing wgpu and Pygfx costs time and dedication. We rely on sponsors to maintain (and grow) the project further.
If you represent a company / group that relies on Pygfx or wgpu-pu, we kindly ask for a sponsorship. That way we can keep replying to issues, review pull request, and move Pygfx further.
If you represent a company / group that relies on Pygfx or wgpu-pu, please consider a sponsorship to help move Pygfx further, and get the support that you need.


## 🎁 What you get
## <i class='fas'></i> How funds are used

* Most importantly, sponsors help ensure that Pygfx is actively maintained!
* Sponsors also get priority on bug reports and feature requests.
* An honorable mention on the front page of pygfx.org!
* In the top tiers, one-on-one support to help you use Pygfx to the max.
Funds for Pygfx are primarily used to fund our developer time. This includes the work on Pygfx itself, keeping wgpu-py up-to-date with the development of WebGPU, and maintaining other dependencies like the render canvas.
Surplus funds are used as a buffer (to create some runway), onboarding additional developers, and maybe organize an event.

We employ a few different [sponsorship tiers](https://github.com/sponsors/pygfx).

## <i class='fas'></i> What you get

## 🧾 Ways to sponsor Pygfx
A sponsorship represents a support contract that offers the following benefits:

We provide a few ways to get funds to us. If you have questions, do not hesitate to reach out to [support@pygfx.com](mailto:support@pygfx.com)!
* Ongoing development on the project.
* Priority on bug reports and feature requests.
* Company logo on the front page of pygfx.org.
* In the top tiers: in-person support to help you use Pygfx to the max.

### Directly

The pygfx-org is a trademark of *Almar Klein scientific computing*, based in The Netherlands.
We can provide an invoice and you pay by bank transfer.
Incoming funds for Pygfx are received at a dedicated bank account, and insights into how the funds are spent are published on a yearly basis.
## <i class='fas'></i> Tiers

<div class=sponsor-tier-box>
<h3><i class='far'></i>Bronze tier at €500 per month</h3>
<i>Your company or group relies on pygfx, and wants to help fund it.</i>
<ul>
<li>Company name (with link) on pygfx.org</li>
</ul>
</div>

### Via Github
<div class=sponsor-tier-box>
<h3><i class='far'></i>Silver tier at €1000 per month</h3>
<i>Your company or group relies on pygfx, and wants to make sure it's actively maintained.</i>
<ul>
<li>Small company logo (with link) on pygfx.org</li>
<li>Prioritized issues and bug reports</li>
</ul>
</div>

You can also sponsor via Github's sponsor system: [https://github.com/sponsors/pygfx](https://github.com/sponsors/pygfx). These funds are payed out by GitHub to the same bank account as mentioned above.
<div class=sponsor-tier-box>
<h3><i class='far'></i>Gold tier at €2000 per month</h3>
<i>Your company or group relies on pygfx, and wants to help move it forward.</i>
<ul>
<li>Large company logo (with link) on pygfx.org</li>
<li>Prioritized issues and bug reports</li>
</ul>
</div>

<div class=sponsor-tier-box>
<h3><i class='far'></i>Platinum tier at €3000 per month</h3>
<i>Your company or group relies on pygfx, you want to help move it forward, and want support for your developers.</i>
<ul>
<li>Large company logo (with link) on pygfx.org</li>
<li>Prioritized issues and bug reports</li>
<li>Private support meetings (up to 5h per month)</li>
</ul>
</div>

### Via OpenCollective
<div class=sponsor-tier-box>
<h3><i class='far'></i>Custom</h3>
We're happy to discuss other options or one-time contributions. Feel free to <a href='mailto:support@pygfx.com'>reach out</a>!
</div>

You can sponsor us via [https://opencollective.com/pygfx](https://opencollective.com/pygfx). These funds and how they are spent are publicly visible.

## <i class='fas'></i> Payment options

## 💰 How funds are spent
We support a few different payment options. If you have questions or suggestions, do not hesitate to reach out to [support@pygfx.com](mailto:support@pygfx.com)!

Sponsorship funds for Pygfx are primarily used to fund our developer time.
If we receive more funds than we can spend, the surplus acts as a buffer to create runway. If that buffer becomes large enough we plan to onboard additional developers.
* We can provide an **invoice** and you pay by **bank transfer**. We can also setup a formal support contract if needed.
* You can also sponsor via **Github's sponsors**: [https://github.com/sponsors/pygfx](https://github.com/sponsors/pygfx)
* You can sponsor us via [opencollective](https://opencollective.com/pygfx). These funds and how they are spent are publicly visible.


## <i class='fas'></i> Legal stuff

Funds are managed via *Almar Klein Scientific Computing*:

* Location: Almere, The Netherlands
* CoC number: 61855448
* Tax id: NL001380600B82
Binary file added static/UbuntuCondensed_latin.woff2
Binary file not shown.
Binary file added static/Ubuntu_latin.woff2
Binary file not shown.
Binary file added static/fa-brands-400.woff2
Binary file not shown.
Binary file added static/fa-regular-400.woff2
Binary file not shown.
Binary file added static/fa-solid-900.woff2
Binary file not shown.
Binary file removed static/pygfx.png
Binary file not shown.
Binary file added static/pygfx1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/pygfx192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading