Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Update how we label experimental features #411

Merged
merged 1 commit into from
Aug 22, 2023
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
6 changes: 3 additions & 3 deletions app/views/docs/databases-relationships.phtml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<p>Relationships describe how documents in different collections are associated, so that related documents can be read, updated, or deleted together. Entities in real-life often associate with each other in an organic and logical way, like a person and their dog, an album and its songs, or friends in a social network. These types of association between entities can be modeled in Appwrite using relationships.</p>

<div class="notice">
<h2>Beta Feature</h2>
<p>Appwrite Relationships is a beta feature. The API and behavior are subject to change in future versions.</p>
<h2>Experimental Feature</h2>
<p>Appwrite Relationships is an experimental feature. The API and behavior are subject to change in future versions.</p>
</div>

<h2><a href="#when-to-use-relationships" id="when-to-use-relationships">When to Use a Relationship</a></h2>
Expand Down Expand Up @@ -558,7 +558,7 @@ databases.createDocument(

<h2><a href="#query" id="query">Querying</a></h2>

<p>Querying is currently not available in the beta version of Appwrite Relationships but will be added in a later version.</p>
<p>Querying is currently not available in the experimental version of Appwrite Relationships but will be added in a later version.</p>

<h2><a href="#update" id="update">Updating Relationships</a></h2>

Expand Down
2 changes: 1 addition & 1 deletion app/views/docs/index.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ $cols = [
<ul class="margin-top-small margin-bottom-small">
<li>&nbsp;&nbsp;<a href="/docs/databases-queries" data-selected="/docs/databases"><i class="icon-angle-circled-right margin-start-negative-tiny margin-end-tiny"></i>Queries</a></li>
<li>&nbsp;&nbsp;<a href="/docs/databases-pagination" data-selected="/docs/databases"><i class="icon-angle-circled-right margin-start-negative-tiny margin-end-tiny"></i>Pagination</a></li>
<li>&nbsp;&nbsp;<a href="/docs/databases-relationships" data-selected="/docs/databases"><i class="icon-angle-circled-right margin-start-negative-tiny margin-end-tiny"></i>Relationships (Beta)</a></li>
<li>&nbsp;&nbsp;<a href="/docs/databases-relationships" data-selected="/docs/databases"><i class="icon-angle-circled-right margin-start-negative-tiny margin-end-tiny"></i>Relationships (experimental)</a></li>
</ul>
</li>
<li><a href="/docs/storage">Storage</a></li>
Expand Down
8 changes: 4 additions & 4 deletions app/views/docs/sdks.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ $markdown->setSafeMode(true);
<?php foreach ($platforms as $platform): ?>
<?php if(!$platform['enabled']) { continue; } ?>
<li class="margin-bottom-small">
<a href="/docs/sdks#<?php echo strtolower($platform['name']); ?>"><i class="icon-angle-circled-right"></i><?php echo $this->escape($platform['name']); ?> SDKs<?php if($platform['beta']): ?> (beta)<?php endif; ?></a>
<a href="/docs/sdks#<?php echo strtolower($platform['name']); ?>"><i class="icon-angle-circled-right"></i><?php echo $this->escape($platform['name']); ?> SDKs<?php if($platform['beta']): ?> (experimental)<?php endif; ?></a>
</li>
<?php endforeach; ?>
</ul>

<?php foreach($platforms as $platform): ?>
<?php if(!$platform['enabled']) { continue; } ?>
<h2 href="/docs/sdks#<?php echo strtolower($platform['name']); ?>" id="<?php echo strtolower($platform['name']); ?>"><?php echo $platform['name']; ?> SDKs<?php if($platform['beta']): ?> (beta)<?php endif; ?></h2>
<h2 href="/docs/sdks#<?php echo strtolower($platform['name']); ?>" id="<?php echo strtolower($platform['name']); ?>"><?php echo $platform['name']; ?> SDKs<?php if($platform['beta']): ?> (experimental)<?php endif; ?></h2>

<p><?php echo $markdown->text($platform['description']); ?></p>

Expand Down Expand Up @@ -63,7 +63,7 @@ $markdown->setSafeMode(true);
<?php if($language['enabled']): ?>
<span class="tag">official</span>
<?php if($language['beta']): ?>
<span class="tag red margin-start-small">beta</span>
<span class="tag red margin-start-small">experimental</span>
<?php endif; ?>
<?php endif; ?>
</td>
Expand All @@ -79,7 +79,7 @@ $markdown->setSafeMode(true);

<h2><a href="/docs/sdks#noSDK" id="noSDK">Integrate without an SDK</a></h2>

<p>We are always looking to add new SDKs to our platform, but if the SDK you are looking for is still missing or in a beta channel, you can always integrate with Appwrite directly using any standard HTTP client and the Appwrite REST API. You can learn more about <a href="https://dev.to/eldadfux/learn-how-you-can-take-advantage-of-the-appwrite-api-without-using-any-sdk-a41" rel="noopener" target="_blank">how you can integrate directly with Appwrite HTTP API</a> from our dedicated blog post on the topic.</p>
<p>We are always looking to add new SDKs to our platform, but if the SDK you are looking for is still missing or is labeled experimental, you can always integrate with Appwrite directly using any standard HTTP client and the Appwrite REST API. You can learn more about <a href="https://dev.to/eldadfux/learn-how-you-can-take-advantage-of-the-appwrite-api-without-using-any-sdk-a41" rel="noopener" target="_blank">how you can integrate directly with Appwrite HTTP API</a> from our dedicated blog post on the topic.</p>

<h2><a href="/docs/sdks#community" id="community">Community</a></h2>

Expand Down