Skip to content

Commit

Permalink
Update website
Browse files Browse the repository at this point in the history
  • Loading branch information
Web Publisher committed Jan 8, 2025
1 parent 009ba12 commit a3c8163
Show file tree
Hide file tree
Showing 33 changed files with 84 additions and 138 deletions.
2 changes: 1 addition & 1 deletion dev/getting-started/oci/cloud-shell/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:53:51+00:00">
<meta name="dcterms.created" content="2025-01-08T11:11:19+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion dev/getting-started/oci/code-editor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:53:51+00:00">
<meta name="dcterms.created" content="2025-01-08T11:11:19+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion dev/getting-started/oci/compute-instance/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:53:51+00:00">
<meta name="dcterms.created" content="2025-01-08T11:11:19+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion dev/getting-started/oci/devops-build-pipeline/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:53:51+00:00">
<meta name="dcterms.created" content="2025-01-08T11:11:19+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion dev/getting-started/oci/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:53:51+00:00">
<meta name="dcterms.created" content="2025-01-08T11:11:19+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
38 changes: 2 additions & 36 deletions dev/reference-manual/python/Embedding-Build-Tools/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,6 @@ <h1 id="embedding-build-tools">
<ul>
<li><em>Python application files</em> provided by the user, for example, Python sources which are part of the project.</li>
<li><em>Third-party Python packages</em> installed by the plugin during the build according to the plugin configuration.</li>
<li><em>The Python standard library</em>, which is necessary to make Native Image generated executables self-contained.</li>
</ul>

<p>Apart from physically managing and deploying those files, it is also necessary to make them available in Python at runtime by configuring the <strong>GraalPy Context</strong> in your Java code accordingly.
Expand Down Expand Up @@ -526,15 +525,12 @@ <h2 id="conventions">
<li><code>${root}/venv</code>: used for the Python virtual environment holding installed third-party Python packages.
The Context will be configured as if it is executed from this virtual environment. Notably packages installed in this
virtual environment will be automatically available for importing.</li>
<li><code>${root}/home</code>: used for the Python standard library (equivalent to <code>PYTHONHOME</code> environment variable).</li>
</ul>

<p>The Maven or Gradle plugin will fully manage the contents of the <code>venv</code> and <code>home</code> subdirectories.
Any manual changes in these directories will be overridden by the plugin during the build.</p>
<p>The Maven or Gradle plugin will fully manage the contents of the <code>venv</code> subdirectory.
Any manual change will be overridden by the plugin during the build.</p>
<ul>
<li><code>${root}/venv</code>: the plugin creates a virtual environment and installs required packages according to the plugin configuration in <em>pom.xml</em> or <em>build.gradle</em>.</li>
<li><code>${root}/home</code>: the plugin copies the required (also configurable) parts of the Python standard library into this directory.
By default, the full standard library is used.</li>
</ul>

<p>The <em>src</em> subdirectory is left to be manually populated by the user with custom Python scripts or modules.</p>
Expand Down Expand Up @@ -568,25 +564,6 @@ <h2 id="graalpy-maven-plugin-configuration">
&lt;/packages&gt;
...
&lt;/configuration&gt;
</code></pre>
</li>
<li>
<p>The <strong>pythonHome</strong> subsection declares what parts of the standard library should be deployed.</p>

<p>Each <code>include</code> and <code>exclude</code> element is interpreted as a Java-like regular expression specifying which file paths should be included or excluded.</p>
<pre><code class="language-xml">&lt;configuration&gt;
&lt;pythonHome&gt;
&lt;includes&gt;
&lt;include&gt;.*&lt;/include&gt;
...
&lt;/includes&gt;
&lt;excludes&gt;
&lt;exclude&gt;&lt;/exclude&gt;
...
&lt;/excludes&gt;
&lt;/pythonHome&gt;
...
&lt;/configuration&gt;
</code></pre>
</li>
<li>If the <strong>pythonResourcesDirectory</strong> element is specified, then the given directory is used as an <a href="#external-directory">external directory</a> and no Java resources are embedded.
Expand Down Expand Up @@ -630,17 +607,6 @@ <h2 id="graalpy-gradle-plugin-configuration">
packages = ["termcolor==2.2"]
...
}
</code></pre>
</li>
<li>The <strong>pythonHome</strong> subsection declares what parts of the standard library should be deployed.
Each element in the <code>includes</code> and <code>excludes</code> list is interpreted as a Java-like regular expression specifying which file paths should be included or excluded.
<pre><code>graalPy {
pythonHome {
includes = [".*"]
excludes = []
}
...
}
</code></pre>
</li>
<li>If the <strong>pythonResourcesDirectory</strong> element is specified, then the given directory is used as an <a href="#external-directory">external directory</a> and no Java resources are embedded.
Expand Down
2 changes: 1 addition & 1 deletion dev/reference-manual/ruby/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ <h2 id="licence">

</h2>

<p>TruffleRuby is copyright (c) 2013-2024 Oracle and/or its affiliates, and is made
<p>TruffleRuby is copyright (c) 2013-2025 Oracle and/or its affiliates, and is made
available to you under the terms of any one of the following three licenses:</p>

<ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/search/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jdk23/getting-started/oci/cloud-shell/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:48:33+00:00">
<meta name="dcterms.created" content="2025-01-08T11:06:05+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion jdk23/getting-started/oci/code-editor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:48:33+00:00">
<meta name="dcterms.created" content="2025-01-08T11:06:05+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion jdk23/getting-started/oci/compute-instance/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:48:33+00:00">
<meta name="dcterms.created" content="2025-01-08T11:06:05+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion jdk23/getting-started/oci/devops-build-pipeline/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:48:33+00:00">
<meta name="dcterms.created" content="2025-01-08T11:06:05+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion jdk23/getting-started/oci/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:48:33+00:00">
<meta name="dcterms.created" content="2025-01-08T11:06:05+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion jdk24/getting-started/oci/cloud-shell/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:52:46+00:00">
<meta name="dcterms.created" content="2025-01-08T11:10:33+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion jdk24/getting-started/oci/code-editor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:52:46+00:00">
<meta name="dcterms.created" content="2025-01-08T11:10:33+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion jdk24/getting-started/oci/compute-instance/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:52:46+00:00">
<meta name="dcterms.created" content="2025-01-08T11:10:33+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion jdk24/getting-started/oci/devops-build-pipeline/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:52:46+00:00">
<meta name="dcterms.created" content="2025-01-08T11:10:33+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion jdk24/getting-started/oci/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:52:46+00:00">
<meta name="dcterms.created" content="2025-01-08T11:10:33+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
38 changes: 2 additions & 36 deletions jdk24/reference-manual/python/Embedding-Build-Tools/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,6 @@ <h1 id="embedding-build-tools">
<ul>
<li><em>Python application files</em> provided by the user, for example, Python sources which are part of the project.</li>
<li><em>Third-party Python packages</em> installed by the plugin during the build according to the plugin configuration.</li>
<li><em>The Python standard library</em>, which is necessary to make Native Image generated executables self-contained.</li>
</ul>

<p>Apart from physically managing and deploying those files, it is also necessary to make them available in Python at runtime by configuring the <strong>GraalPy Context</strong> in your Java code accordingly.
Expand Down Expand Up @@ -539,15 +538,12 @@ <h2 id="conventions">
<li><code>${root}/venv</code>: used for the Python virtual environment holding installed third-party Python packages.
The Context will be configured as if it is executed from this virtual environment. Notably packages installed in this
virtual environment will be automatically available for importing.</li>
<li><code>${root}/home</code>: used for the Python standard library (equivalent to <code>PYTHONHOME</code> environment variable).</li>
</ul>

<p>The Maven or Gradle plugin will fully manage the contents of the <code>venv</code> and <code>home</code> subdirectories.
Any manual changes in these directories will be overridden by the plugin during the build.</p>
<p>The Maven or Gradle plugin will fully manage the contents of the <code>venv</code> subdirectory.
Any manual change will be overridden by the plugin during the build.</p>
<ul>
<li><code>${root}/venv</code>: the plugin creates a virtual environment and installs required packages according to the plugin configuration in <em>pom.xml</em> or <em>build.gradle</em>.</li>
<li><code>${root}/home</code>: the plugin copies the required (also configurable) parts of the Python standard library into this directory.
By default, the full standard library is used.</li>
</ul>

<p>The <em>src</em> subdirectory is left to be manually populated by the user with custom Python scripts or modules.</p>
Expand Down Expand Up @@ -581,25 +577,6 @@ <h2 id="graalpy-maven-plugin-configuration">
&lt;/packages&gt;
...
&lt;/configuration&gt;
</code></pre>
</li>
<li>
<p>The <strong>pythonHome</strong> subsection declares what parts of the standard library should be deployed.</p>

<p>Each <code>include</code> and <code>exclude</code> element is interpreted as a Java-like regular expression specifying which file paths should be included or excluded.</p>
<pre><code class="language-xml">&lt;configuration&gt;
&lt;pythonHome&gt;
&lt;includes&gt;
&lt;include&gt;.*&lt;/include&gt;
...
&lt;/includes&gt;
&lt;excludes&gt;
&lt;exclude&gt;&lt;/exclude&gt;
...
&lt;/excludes&gt;
&lt;/pythonHome&gt;
...
&lt;/configuration&gt;
</code></pre>
</li>
<li>If the <strong>pythonResourcesDirectory</strong> element is specified, then the given directory is used as an <a href="#external-directory">external directory</a> and no Java resources are embedded.
Expand Down Expand Up @@ -643,17 +620,6 @@ <h2 id="graalpy-gradle-plugin-configuration">
packages = ["termcolor==2.2"]
...
}
</code></pre>
</li>
<li>The <strong>pythonHome</strong> subsection declares what parts of the standard library should be deployed.
Each element in the <code>includes</code> and <code>excludes</code> list is interpreted as a Java-like regular expression specifying which file paths should be included or excluded.
<pre><code>graalPy {
pythonHome {
includes = [".*"]
excludes = []
}
...
}
</code></pre>
</li>
<li>If the <strong>pythonResourcesDirectory</strong> element is specified, then the given directory is used as an <a href="#external-directory">external directory</a> and no Java resources are embedded.
Expand Down
2 changes: 1 addition & 1 deletion jdk24/reference-manual/ruby/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ <h2 id="licence">

</h2>

<p>TruffleRuby is copyright (c) 2013-2024 Oracle and/or its affiliates, and is made
<p>TruffleRuby is copyright (c) 2013-2025 Oracle and/or its affiliates, and is made
available to you under the terms of any one of the following three licenses:</p>

<ul>
Expand Down
2 changes: 1 addition & 1 deletion latest/getting-started/oci/cloud-shell/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:47:41+00:00">
<meta name="dcterms.created" content="2025-01-08T11:04:23+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion latest/getting-started/oci/code-editor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:47:41+00:00">
<meta name="dcterms.created" content="2025-01-08T11:04:23+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion latest/getting-started/oci/compute-instance/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:47:41+00:00">
<meta name="dcterms.created" content="2025-01-08T11:04:23+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:47:41+00:00">
<meta name="dcterms.created" content="2025-01-08T11:04:23+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion latest/getting-started/oci/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:47:41+00:00">
<meta name="dcterms.created" content="2025-01-08T11:04:23+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion licensing-information/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:47:41+00:00">
<meta name="dcterms.created" content="2025-01-08T11:04:23+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
14 changes: 14 additions & 0 deletions native-image/libraries-and-frameworks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1483,6 +1483,20 @@ <h5 class="ni-libsfram-mod">If you would like to add your library and framework
<td class="tg test-level"><span class="details" title="The library or framework is continuously tested as part of the GraalVM Reachability Metadata repository or some other community-driven project.">&#x2605;<sup><a href="#footnote-1">1)</a></sup></span></td>
</tr>
<tr>
<td class="tg artifact" rowspan="1"><code title="Core modules of Fugerit Venus Doc framework. Contains XML source and simple markdown doc handler.">org.fugerit.java:fj-doc-base</code></td>
<td class="tg">
<a href="https://search.maven.org/artifact/org.fugerit.java/fj-doc-base/8.10.6/jar" target="_blank" title="Minimum version">8.10.6</a>
</td>
<td class="tg test-level"><span class="details" title="The library or framework is continuously tested by the maintainers. This is the best test level.">&#x2605;&#x2605;</span></td>
</tr>
<tr>
<td class="tg artifact" rowspan="1"><code title="FreeMarker extensions for Fugerit Venus Doc framework. Contains doc handler for HTML and AsciiDoc.">org.fugerit.java:fj-doc-freemarker</code></td>
<td class="tg">
<a href="https://search.maven.org/artifact/org.fugerit.java/fj-doc-freemarker/8.10.6/jar" target="_blank" title="Minimum version">8.10.6</a>
</td>
<td class="tg test-level"><span class="details" title="The library or framework is continuously tested by the maintainers. This is the best test level.">&#x2605;&#x2605;</span></td>
</tr>
<tr>
<td class="tg artifact" rowspan="1"><code title="">org.glassfish.jaxb:jaxb-runtime</code></td>
<td class="tg">
<a href="https://search.maven.org/artifact/org.glassfish.jaxb/jaxb-runtime/3.0.2/jar" target="_blank" title="Minimum version">3.0.2</a>
Expand Down
2 changes: 1 addition & 1 deletion redirects.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion reference-manual/graaljs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:47:41+00:00">
<meta name="dcterms.created" content="2025-01-08T11:04:23+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion reference-manual/graalpy/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:47:41+00:00">
<meta name="dcterms.created" content="2025-01-08T11:04:23+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
2 changes: 1 addition & 1 deletion reference-manual/graalwasm/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@



<meta name="dcterms.created" content="2024-12-20T13:47:41+00:00">
<meta name="dcterms.created" content="2025-01-08T11:04:23+00:00">
<meta name="dcterms.category" content="">
<meta name="dcterms.identifier" content="">
<meta name="dcterms.product" content="">
Expand Down
Loading

0 comments on commit a3c8163

Please sign in to comment.