mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
This adds a new resource implementing a simple pretty printer for json documents. Testing: build this branch and launch with `./mach run https://httpbin.org/json` <img width="1044" height="1064" alt="image" src="https://github.com/user-attachments/assets/42680c4b-2971-482a-af2b-9017f0f81752" /> --------- Signed-off-by: webbeef <me@webbeef.org> Signed-off-by: Tim van der Lippe <tvanderlippe@gmail.com> Co-authored-by: Tim van der Lippe <TimvdLippe@users.noreply.github.com>
40 lines
1.8 KiB
Rust
40 lines
1.8 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use embedder_traits::resources::{Resource, ResourceReaderMethods};
|
|
|
|
/// A default resource reader that provides baked in resources.
|
|
pub struct DefaultResourceReader;
|
|
|
|
impl ResourceReaderMethods for DefaultResourceReader {
|
|
fn sandbox_access_files(&self) -> Vec<PathBuf> {
|
|
vec![]
|
|
}
|
|
fn sandbox_access_files_dirs(&self) -> Vec<PathBuf> {
|
|
vec![]
|
|
}
|
|
fn read(&self, file: Resource) -> Vec<u8> {
|
|
match file {
|
|
Resource::BluetoothBlocklist => &include_bytes!("resources/gatt_blocklist.txt")[..],
|
|
Resource::DomainList => &include_bytes!("resources/public_domains.txt")[..],
|
|
Resource::HstsPreloadList => &include_bytes!("resources/hsts_preload.fstmap")[..],
|
|
Resource::BadCertHTML => &include_bytes!("resources/badcert.html")[..],
|
|
Resource::NetErrorHTML => &include_bytes!("resources/neterror.html")[..],
|
|
Resource::BrokenImageIcon => &include_bytes!("resources/rippy.png")[..],
|
|
Resource::CrashHTML => &include_bytes!("resources/crash.html")[..],
|
|
Resource::DirectoryListingHTML => {
|
|
&include_bytes!("resources/directory-listing.html")[..]
|
|
},
|
|
Resource::AboutMemoryHTML => &include_bytes!("resources/about-memory.html")[..],
|
|
Resource::DebuggerJS => &include_bytes!("resources/debugger.js")[..],
|
|
Resource::JsonViewerHTML => &include_bytes!("resources/json-viewer.html")[..],
|
|
}
|
|
.to_owned()
|
|
}
|
|
}
|
|
|
|
embedder_traits::submit_resource_reader!(&DefaultResourceReader);
|