Skip to content

Commit b00d59c

Browse files
committed
docs: Rewrite blob md links to GitHub Pages (isse #4085)
1 parent cc41bf3 commit b00d59c

29 files changed

+57
-57
lines changed

BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file provides the GN configuration for the CEF project. This is not a
66
# stand-alone configuration -- it must be built from inside the Chromium source
7-
# tree. See https://github.com/chromiumembedded/cef/blob/master/docs/branches_and_building.md
7+
# tree. See https://chromiumembedded.github.io/cef/branches_and_building
88
# for complete CEF build instructions. See below for links to additional GN
99
# documentation.
1010
#

CHROMIUM_BUILD_COMPATIBILITY.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# revisions is available by viewing this file's change history.
55
#
66
# Instructions for building CEF are available at:
7-
# https://github.com/chromiumembedded/cef/blob/master/docs/branches_and_building.md
7+
# https://chromiumembedded.github.io/cef/branches_and_building
88

99
{
1010
'chromium_checkout': 'refs/tags/145.0.7632.0'

CHROMIUM_UPDATE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# during update.
2222
#
2323
# For complete update instructions see:
24-
# https://github.com/chromiumembedded/cef/blob/master/docs/chromium_update.md
24+
# https://chromiumembedded.github.io/cef/chromium_update
2525

2626
{
2727
# Files in the chromium/src directory that should be evaluated for changes.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ The Chromium Embedded Framework (CEF) is a simple framework for embedding Chromi
33
# Quick Links
44

55
* Project Page - https://github.com/chromiumembedded/cef
6-
* Documentation - [docs/](docs/README.md)
7-
* Tutorial - [docs/tutorial.md](docs/tutorial.md)
8-
* General Usage - [docs/general_usage.md](docs/general_usage.md)
9-
* Master Build Quick-Start - [docs/master_build_quick_start.md](docs/master_build_quick_start.md)
10-
* Branches and Building - [docs/branches_and_building.md](docs/branches_and_building.md)
6+
* Documentation - https://chromiumembedded.github.io/cef/
7+
* Tutorial - https://chromiumembedded.github.io/cef/tutorial
8+
* General Usage - https://chromiumembedded.github.io/cef/general_usage
9+
* Master Build Quick-Start - https://chromiumembedded.github.io/cef/master_build_quick_start
10+
* Branches and Building - https://chromiumembedded.github.io/cef/branches_and_building
1111
* Announcements - https://groups.google.com/forum/#!forum/cef-announce
1212
* Support Forum - http://www.magpcss.org/ceforum/
1313
* Issue Tracker - https://github.com/chromiumembedded/cef/issues
@@ -30,15 +30,15 @@ Numerous individuals and organizations contribute time and resources to support
3030

3131
# Getting Started
3232

33-
Users new to CEF development should start by reading the [Tutorial](docs/tutorial.md) for an overview of CEF usage and then proceed to the [General Usage](docs/general_usage.md) page for a more in-depth discussion of architectural and usage issues. Complete API documentation is available [here](https://cef-builds.spotifycdn.com/docs/stable.html). CEF support and related discussion is available on the [CEF Forum](http://www.magpcss.org/ceforum/).
33+
Users new to CEF development should start by reading the [Tutorial](https://chromiumembedded.github.io/cef/tutorial) for an overview of CEF usage and then proceed to the [General Usage](https://chromiumembedded.github.io/cef/general_usage) page for a more in-depth discussion of architectural and usage issues. Complete API documentation is available [here](https://cef-builds.spotifycdn.com/docs/stable.html). CEF support and related discussion is available on the [CEF Forum](http://www.magpcss.org/ceforum/).
3434

3535
# Binary Distributions
3636

3737
Binary distributions, which include all files necessary to build a CEF-based application, are available on the [Downloads](https://cef-builds.spotifycdn.com/index.html) page. Binary distributions are stand-alone and do not require the download of CEF or Chromium source code. Symbol files for debugging binary distributions of libcef can also be downloaded from the above links.
3838

3939
# Source Distributions
4040

41-
The CEF project is an extension of the Chromium project. CEF maintains development and release branches that track Chromium branches. CEF source code can be downloaded, built and packaged manually or with automated tools. Visit the [Branches and Building](docs/branches_and_building.md) page for more information.
41+
The CEF project is an extension of the Chromium project. CEF maintains development and release branches that track Chromium branches. CEF source code can be downloaded, built and packaged manually or with automated tools. Visit the [Branches and Building](https://chromiumembedded.github.io/cef/branches_and_building) page for more information.
4242

4343
# External Projects
4444

@@ -77,7 +77,7 @@ If you would like to contribute source code changes to CEF please follow the bel
7777

7878
\- Create or find an appropriate issue for each distinct bug, feature or change.
7979

80-
\- Submit a [pull request](docs/contributing_with_git.md) or create a patch with your changes and attach it to the CEF issue. Changes should:
80+
\- Submit a [pull request](https://chromiumembedded.github.io/cef/contributing_with_git) or create a patch with your changes and attach it to the CEF issue. Changes should:
8181

8282
* Be submitted against the current [CEF master branch](https://github.com/chromiumembedded/cef/tree/master) unless explicitly fixing a bug in a CEF release branch.
8383
* Follow the style of existing CEF source files. In general CEF uses the [Chromium C++ style guide](https://chromium.googlesource.com/chromium/src/+/master/styleguide/c++/c++.md).

cmake/cef_variables.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ option(USE_SANDBOX "Enable or disable use of the sandbox." ON)
7171

7272
# Optionally configure the CEF API version by adding `-D api_version=XXXXX` to the
7373
# cmake command-line where XXXXX is the desired version number. For background see
74-
# https://github.com/chromiumembedded/cef/blob/master/docs/api_versioning.md
74+
# https://chromiumembedded.github.io/cef/api_versioning
7575
if(DEFINED api_version)
7676
string(LENGTH "${api_version}" length)
7777
if (NOT length EQUAL 5 OR NOT api_version MATCHES "^[0-9]+$")

include/base/cef_dump_without_crashing.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
/// against the libcef_dll_wrapper target.
3737
///
3838
/// NOTE: Ensure crash reporting is configured before use. See
39-
/// https://github.com/chromiumembedded/cef/blob/master/docs/crash_reporting.md
39+
/// https://chromiumembedded.github.io/cef/crash_reporting
4040
/// for more information
4141
///
4242
/// WARNING: Crash reporting should not be used in the main/browser process

include/cef_api_hash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//
3030
// Versions are managed using the version_manager.py tool. For usage details
3131
// see
32-
// https://github.com/chromiumembedded/cef/blob/master/docs/api_versioning.md
32+
// https://chromiumembedded.github.io/cef/api_versioning
3333
//
3434

3535
#ifndef CEF_INCLUDE_CEF_API_HASH_H_

include/cef_browser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ class CefBrowserHost : public virtual CefBaseRefCounted {
711711
/// information will be sent to the renderer process to configure screen size
712712
/// and position values used by CSS and JavaScript (window.deviceScaleFactor,
713713
/// window.screenX/Y, window.outerWidth/Height, etc.). For background see
714-
/// https://github.com/chromiumembedded/cef/blob/master/docs/general_usage.md#coordinate-systems
714+
/// https://chromiumembedded.github.io/cef/general_usage#coordinate-systems
715715
///
716716
/// This method is used with (a) windowless rendering and (b) windowed
717717
/// rendering with external (client-provided) root window.

include/cef_sandbox_mac.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ extern "C" {
4848
/// The sandbox is used to restrict sub-processes (renderer, GPU, etc) from
4949
/// directly accessing system resources. This helps to protect the user from
5050
/// untrusted and potentially malicious Web content. See
51-
/// https://github.com/chromiumembedded/cef/blob/master/docs/sandbox_setup.md
51+
/// https://chromiumembedded.github.io/cef/sandbox_setup
5252
/// for usage details. See include/wrapper/cef_library_loader.h for example
5353
/// usage.
5454
///

include/cef_sandbox_win.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ extern "C" {
5252
/// The sandbox is used to restrict sub-processes (renderer, GPU, etc) from
5353
/// directly accessing system resources. This helps to protect the user from
5454
/// untrusted and potentially malicious Web content. See
55-
/// https://github.com/chromiumembedded/cef/blob/master/docs/sandbox_setup.md
55+
/// https://chromiumembedded.github.io/cef/sandbox_setup
5656
/// for usage details.
5757
///
5858

0 commit comments

Comments
 (0)