Skip to content

Commit

Permalink
merge w master
Browse files Browse the repository at this point in the history
  • Loading branch information
AKCodez committed Nov 22, 2023
2 parents e19f58b + f8d0838 commit 2c20a07
Show file tree
Hide file tree
Showing 69 changed files with 90 additions and 88 deletions.
4 changes: 2 additions & 2 deletions assets/css/devportal2022-v25.css

Large diffs are not rendered by default.

File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added assets/img/uses/lightmode/cryptum.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added assets/img/uses/modallogos/cryptum.png
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
48 changes: 29 additions & 19 deletions assets/js/modal.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
$(document).ready(() => {
// Note: Use lowercase filenames here to avoid case inconsistency between
// dev environments like macOS and Windows which are not case-sensitive,
// and production Linux servers which use case-sensitive file systems.
const logos = {
infrastructure: [
"XRP-Ledger",
"Gatehub",
"towoLabs",
"xrp-ledger",
"gatehub",
"towolabs",
"xrpscan",
"xrp-toolkit",
"bithomp",
"onthedex",
],
developer_tooling: [
"blockforce",
"Evernode",
"cryptum",
"evernode",
"threezy",
"tokenize",
],
interoperability: ["Allbridge", "futureverse", "multichain"],
interoperability: ["multichain"],
wallet: [
"Bitfrost",
"Crossmark",
"Edge",
"bitfrost",
"crossmark",
"edge",
"gem-wallet",
"Xumm",
"xumm",
],
nfts: [
"aesthetes",
Expand All @@ -32,19 +35,16 @@ $(document).ready(() => {
"xrp-cafe",
"xrp-oval",
],
exchanges: ["sologenic_dex", "XPMarket"],
exchanges: ["sologenic_dex", "xpmarket"],
gaming: [
"Forte",
"Futureverse",
"forte",
"ledger-city",
"onXRP",
"styngr",
],
security: ["Anchain"],
payments: ["ripple", "SuperMojo"],
security: ["anchain"],
payments: ["ripple", "supermojo"],
cbdc: ["ripple"],
sustainability: ["carbonland-trust", "Rootmaker"],
custody: ["Gatehub", "Bitgo"],
sustainability: ["carbonland-trust"],
custody: ["gatehub", "bitgo"],
};
// Helper function to create a logo element
function createLogoElement(logoSrc, title, id) {
Expand Down Expand Up @@ -132,6 +132,16 @@ $(document).ready(() => {
const logoElem = createLogoElement(logoArray[i], title, id);
bottomRowDiv.appendChild(logoElem);
}
}else if (logoArray.length === 8) {
// 4 on top, 4 on bottom
for (let i = 0; i < 4; i++) {
const logoElem = createLogoElement(logoArray[i], title, id);
topRowDiv.appendChild(logoElem);
}
for (let i = 4; i < 8; i++) {
const logoElem = createLogoElement(logoArray[i], title, id);
bottomRowDiv.appendChild(logoElem);
}
} else if (logoArray.length === 6) {
// Special case: 3 on top, 3 on bottom
for (let i = 0; i < 3; i++) {
Expand Down
1 change: 0 additions & 1 deletion content/@i18n/ja/references/client-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,3 @@ blurb: これらのライブラリを使用して、お好みのプログラミ
| **Java** | `xrpl4j` | [Javaを使ってみよう](get-started-using-java.html) | [API リファレンス](https://javadoc.io/doc/org.xrpl/) | [リポジトリ](https://github.com/XRPLF/xrpl4j) |
| **Ruby** | `xrbp` | | [API リファレンス](https://www.rubydoc.info/gems/xrbp) | [リポジトリ](https://github.com/DevNullProd/xrbp) |

**ヒント:** ここに掲載されていないクライアントライブラリを追加するには、[このページの変更を提案]({{target.github_forkurl}}/edit/{{target.github_branch}}/content/{{currentpage.md}})してください!
3 changes: 0 additions & 3 deletions content/_snippets/data_types/address.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ XRP Ledgerのアカウントは、XRP Ledgerの[base58][]フォーマットの
>
> XRP Ledgerプロトコルは「クラシック」アドレスのみをネイティブにサポートしていますが、多くの[クライアントライブラリ](client-libraries.html)はXアドレスもサポートしています。
{% if currentpage.md != "addresses.ja.md" %}
詳しくは、[アカウント](accounts.html)[base58エンコード](base58-encodings.html)をご覧ください。
{% endif %}
4 changes: 0 additions & 4 deletions content/_snippets/data_types/address.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,3 @@ Accounts in the XRP Ledger are identified by an address in the XRP Ledger's [bas
> **Note:** There is also an **X**-address format that "packs" a [destination tag](source-and-destination-tags.html) into the address. These addresses start with an `X` (for Mainnet) or a `T` (for [test networks](parallel-networks.html)). Exchanges and wallets can use X-addresses to represent all the data a customer needs to know in one value. For more information, see the [X-address format site](https://xrpaddress.info/) and [codec](https://github.com/xrp-community/xrpl-tagged-address-codec).
>
> The XRP Ledger protocol only supports "classic" addresses natively, but many [client libraries](client-libraries.html) support X-addresses too.
{% if currentpage.md != "addresses.md" %}
For more information, see [Accounts](accounts.html) and [base58 Encodings](base58-encodings.html).
{% endif %}
23 changes: 3 additions & 20 deletions content/_snippets/post-rippled-install.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@

`rippled`が残りのネットワークと同期されたら、ストック`rippled`サーバーが完全に機能するようになります。このサーバーを、ローカル署名やXRP LedgerへのAPIアクセスに使用できます。`rippled`サーバーがネットワークと同期されているかどうかを判別するには、[`rippled`サーバーの状況](rippled-server-states.html)を使用します。[`rippled`のコマンドラインインターフェイス](get-started-using-http-websocket-apis.html#コマンドライン)を使用すれば、これを迅速にテストできます。

{% if currentpage.md == "tutorials/manage-the-rippled-server/installation/build-run-rippled-ubuntu.md" or
currentpage.md == "tutorials/manage-the-rippled-server/installation/build-run-rippled-macos.md" %}
$ ./rippled server_info
{% else %}
$ /opt/ripple/bin/rippled server_info
{% endif %}
```sh
rippled server_info
```

rippled APIを使用した`rippled`サーバーとの通信について詳しくは、[rippled API reference](http-websocket-apis.html)を参照してください。

Expand All @@ -27,20 +24,6 @@ rippled APIを使用した`rippled`サーバーとの通信について詳しく

構成の変更を有効にするには、`rippled`を再起動する必要があります。

{% if currentpage.md == "tutorials/manage-the-rippled-server/installation/install-rippled-on-ubuntu.md" or
currentpage.md == "tutorials/manage-the-rippled-server/installation/install-rippled-on-centos-rhel-with-yum" %}
$ sudo systemctl restart rippled.service

{% elif currentpage.md == "tutorials/manage-the-rippled-server/installation/build-run-rippled-ubuntu.md" or
currentpage.md == "tutorials/manage-the-rippled-server/installation/build-run-rippled-macos.md" %}


* Ctrl-Cを使用して`rippled`を停止し、その後再起動します。

$ ./rippled

{% endif %}

`[debug_logfile]`セクションまたは`[database_path]`セクションを変更すると、`rippled`を実行するユーザーに、新しく構成したパスの所有権を付与する必要が生じる場合があります。

### 更新
Expand Down
27 changes: 5 additions & 22 deletions content/_snippets/post-rippled-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@ It can take several minutes to sync with the rest of the XRP Ledger network, dur

You can use the [`rippled` commandline interface](get-started-using-http-websocket-apis.html#commandline) to see if your server is synced with the network:

{% if currentpage.md == "tutorials/manage-the-rippled-server/installation/build-run-rippled-ubuntu.md" or
currentpage.md == "tutorials/manage-the-rippled-server/installation/build-run-rippled-macos.md" %}
./rippled server_info
{% else %}
/opt/ripple/bin/rippled server_info
{% endif %}
```sh
rippled server_info
```

If the `server_state` in the response is `full` or `proposing`, then your server is fully synced to the network. Otherwise, you may need to wait longer. Fresh servers usually sync within 15 minutes; servers that already have [ledger history](ledger-history.html) stored can take longer.

Expand All @@ -21,25 +18,11 @@ Having trouble getting your server started? See [rippled Server Won't Start](ser

`rippled` should connect to the XRP Ledger with the default configuration. However, you can change your settings by editing the `rippled.cfg` file. For recommendations about configuration settings, see [Capacity Planning](capacity-planning.html).

{% include '_snippets/conf-file-location.md' %}<!--_ -->
{% include '_snippets/conf-file-location.md' %}

See [the `rippled` GitHub repository](https://github.com/XRPLF/rippled/blob/master/cfg/rippled-example.cfg) for a description of all configuration options.

You must restart `rippled` for any configuration changes to take effect:


{% if currentpage.md == "tutorials/manage-the-rippled-server/installation/install-rippled-on-ubuntu.md" or
currentpage.md == "tutorials/manage-the-rippled-server/installation/install-rippled-on-centos-rhel-with-yum" %}
sudo systemctl restart rippled.service

{% elif currentpage.md == "tutorials/manage-the-rippled-server/installation/build-run-rippled-ubuntu.md" or
currentpage.md == "tutorials/manage-the-rippled-server/installation/build-run-rippled-macos.md" %}

* Use Ctrl-C to stop `rippled`, then start it again:

./rippled

{% endif %}
You must restart `rippled` for any configuration changes to take effect.

If you change the `[debug_logfile]` or `[database_path]` sections, you may need to grant ownership of the new configured path to the user you run `rippled` as.

Expand Down
2 changes: 0 additions & 2 deletions content/references/client-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ For other programming languages, you can access the XRP Ledger through the [HTTP
| **JavaScript** / **TypeScript** | `xrpl.js` | [Get Started](get-started-using-javascript.html) | [API Reference](https://js.xrpl.org/) | [Repo](https://github.com/XRPLF/xrpl.js) |
| **C++** | `rippled` Signing Library | [Get Started](https://github.com/XRPLF/rippled/tree/develop/Builds/linux#signing-library) | | (Part of [`rippled`](https://github.com/XRPLF/rippled/)) |
| **Java** | `xrpl4j` | [Get Started Using Java](get-started-using-java.html) | [API Reference](https://javadoc.io/doc/org.xrpl/) | [Repo](https://github.com/XRPLF/xrpl4j) |

**Tip:** To add a client library not listed here, please [suggest changes to this page]({{target.github_forkurl}}/edit/{{target.github_branch}}/content/{{currentpage.md}})!
42 changes: 30 additions & 12 deletions styles/_use-cases.scss
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
/* Use Cases ---------------------------------------------------------------- */

// Define each category's logos
$infrastructure-logos: "XRP-Ledger", "Gatehub", "towoLabs", "xrpscan", "xrp-toolkit", "bithomp", "onthedex";
$developer-tooling-logos: "blockforce", "Evernode", "threezy", "tokenize";
$interoperability-logos: "Allbridge", "futureverse", "multichain";
$wallet-logos: "Crossmark", "Edge", "gem-wallet", "Xumm";
$infrastructure-logos: "xrp-ledger", "gatehub", "towolabs", "xrpscan", "xrp-toolkit", "bithomp", "onthedex";
$developer-tooling-logos: "cryptum", "evernode", "threezy", "tokenize";
$interoperability-logos: "multichain";
$wallet-logos: "crossmark", "edge", "gem-wallet", "xumm";
$nfts-logos: "aesthetes", "audiotarky", "nftmaster", "peerkat", "sologenic_dex", "xrp-cafe", "xrp-oval";
$exchanges-logos: "sologenic_dex", "XPMarket";
$gaming-logos: "Forte", "Futureverse", "ledger-city", "onXRP", "styngr";
$security-logos: "Anchain";
$payments-logos: "ripple", "SuperMojo";
$exchanges-logos: "sologenic_dex", "xpmarket";
$gaming-logos: "forte", "ledger-city";
$security-logos: "anchain";
$payments-logos: "ripple", "supermojo";
$cbdc-logos: "ripple";
$carbon-markets-logos: "carbonland-trust", "Rootmaker";
$custody-logos: "Gatehub", "Bitgo";
$carbon-markets-logos: "carbonland-trust";
$custody-logos: "gatehub", "bitgo";

// Create a mixin to handle the common logic
@mixin create-logo-classes($logo-list) {
@each $logo in $logo-list {
.#{$logo} {
content: url(../img/uses/modalLogos/#{$logo}.png);
content: url(../img/uses/modallogos/#{$logo}.png);
}

html.light {
Expand All @@ -28,7 +28,25 @@ $custody-logos: "Gatehub", "Bitgo";
}
}
}

#use_case_companies_list {
#threezy {
.biz-logo {
max-height: 40px;
content: url("../img/uses/modallogos/threezy.png");
}
}
}
html.light{
.cryptum{
content: url(../img/uses/lightmode/cryptum.jpg) !important;
height: 58px;
max-width: max-content;
width: 184px;
max-height: none;
margin: 0px;
padding-bottom: 10px;
}
}
// Use the mixin for each category
@include create-logo-classes($infrastructure-logos);
@include create-logo-classes($developer-tooling-logos);
Expand Down
10 changes: 10 additions & 0 deletions styles/light/_light-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,16 @@ pre code {
}
}
}
#use_case_companies_list {
#threezy {
.biz-logo {
max-height: 40px;
content: url("../img/uses/lightmode/threezy.png");
}
}
}



// Monochrome logos; invert.
#bitpay,
Expand Down
14 changes: 11 additions & 3 deletions template/page-uses.html.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,14 @@
"category_id": "developer_tooling",
"category_name": _("Developer Tooling"),
"link": "https://x-tokenize.com/",
},
{
"id": "threezy",
"title": _("3ZY"),
"description": _("3ZY develops SaaS solutions that combine web2 and web3 technologies with marketing to enhance the user experience for newcomers in the market, making it easier for them to purchase, stay secure, and engage in trustless decentralized finance and transactions."),
"category_id": "developer_tooling",
"category_name": _("Developer Tooling"),
"link": "https://3zyconnect.com/",
},
{
"id": "xp-market",
Expand Down Expand Up @@ -397,7 +405,7 @@
},
{"id": "interoperability",
"title": _("Interoperability"),
"number": 3,
"number": 1,
"description": _("Developers and node operators can build and run custom sidechains while leveraging the XRPL’s lean and efficient feature set.")
},
{"id": "wallet",
Expand All @@ -417,7 +425,7 @@
},
{"id": "gaming",
"title": _("Gaming"),
"number": 5,
"number": 2,
"description": _("The XRPL supports gaming at high speed given its reliable throughput, low fees, and sidechain interoperability.")
},
{"id": "security",
Expand All @@ -440,7 +448,7 @@

{"id": "sustainability",
"title": _("Sustainability"),
"number": 2,
"number": 1,
"description": _("Use the XRP Ledger to tokenize carbon offsets as non-fungible tokens (NFTs).")
},

Expand Down

0 comments on commit 2c20a07

Please sign in to comment.