Skip to content

Commit

Permalink
Merge pull request #886 from psychon/doc-hyperlinks
Browse files Browse the repository at this point in the history
generator: Mark hyperlinks as such
  • Loading branch information
mergify[bot] authored Oct 6, 2023
2 parents aca14e3 + 7b7d40d commit 5ccfcc3
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 11 deletions.
1 change: 1 addition & 0 deletions generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ publish = false
[dependencies]
roxmltree = "0.18.0"
xcbgen = { path = "../xcbgen-rs" }
regex = "1.9"
13 changes: 12 additions & 1 deletion generator/src/generator/namespace/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
#![allow(clippy::cognitive_complexity, clippy::too_many_arguments)]

use std::borrow::Cow;
use std::cell::RefCell;
use std::collections::{HashMap, HashSet};
use std::fmt::Write;
use std::rc::Rc;
use std::sync::OnceLock;

use regex::Regex;

use xcbgen::defs as xcbdefs;

Expand Down Expand Up @@ -1092,7 +1096,7 @@ impl<'ns, 'c> NamespaceGenerator<'ns, 'c> {
if line.trim().is_empty() {
outln!(out, "///");
} else {
outln!(out, "/// {}", line.trim());
outln!(out, "/// {}", add_doc_markup(line.trim()));
}
}
}
Expand Down Expand Up @@ -1595,3 +1599,10 @@ impl<'ns, 'c> NamespaceGenerator<'ns, 'c> {
}
}
}

fn add_doc_markup(line: &str) -> Cow<'_, str> {
// The regex finds URLs and is used to marks them as hyperlinks for rustdoc
static REGEX: OnceLock<Regex> = OnceLock::new();
let regex = REGEX.get_or_init(|| Regex::new("https?://[a-zA-Z0-9-_/\\.]+").unwrap());
regex.replace_all(line, "<$0>")
}
8 changes: 4 additions & 4 deletions x11rb-async/src/protocol/damage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ where
/// Remove regions from a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand All @@ -158,7 +158,7 @@ where
/// Add a region to a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand Down Expand Up @@ -245,7 +245,7 @@ pub trait ConnectionExt: RequestConnection {
/// Remove regions from a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand All @@ -261,7 +261,7 @@ pub trait ConnectionExt: RequestConnection {
/// Add a region to a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand Down
4 changes: 2 additions & 2 deletions x11rb-protocol/src/protocol/damage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ pub const SUBTRACT_REQUEST: u8 = 3;
/// Remove regions from a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand Down Expand Up @@ -519,7 +519,7 @@ pub const ADD_REQUEST: u8 = 4;
/// Add a region to a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand Down
8 changes: 4 additions & 4 deletions x11rb/src/protocol/damage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ where
/// Remove regions from a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand Down Expand Up @@ -160,7 +160,7 @@ where
/// Add a region to a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand Down Expand Up @@ -248,7 +248,7 @@ pub trait ConnectionExt: RequestConnection {
/// Remove regions from a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand All @@ -264,7 +264,7 @@ pub trait ConnectionExt: RequestConnection {
/// Add a region to a previously created Damage object..
///
/// This updates the regions of damage recorded in a a Damage object.
/// See https://www.x.org/releases/current/doc/damageproto/damageproto.txt
/// See <https://www.x.org/releases/current/doc/damageproto/damageproto.txt>
/// for details.
///
/// # Fields
Expand Down

0 comments on commit 5ccfcc3

Please sign in to comment.