Skip to content
This repository was archived by the owner on Apr 10, 2025. It is now read-only.

Commit daf1d94

Browse files
committed
Update repository links
Update sources to reflect that the source of truth for most of the repositories in pagespeed/ have moved to github.com/apache/incubator-pagespeed-*
1 parent 4f1565b commit daf1d94

12 files changed

+15
-15
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "testing-dependencies/mod_pagespeed"]
22
path = testing-dependencies/mod_pagespeed
3-
url = https://github.com/pagespeed/mod_pagespeed.git
3+
url = https://github.com/apache/incubator-pagespeed-mod.git
44
[submodule "testing-dependencies/ngx_cache_purge"]
55
path = testing-dependencies/ngx_cache_purge
66
url = https://github.com/FRiCKLE/ngx_cache_purge.git

PSOL_BINARY_URL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
In a release this file would contain the URL to download the pre-compiled PSOL
22
binary, but on development branches (like this one) you have to build PSOL from
33
source yourself. See:
4-
https://github.com/pagespeed/ngx_pagespeed/wiki/Building-PSOL-From-Source
4+
https://github.com/apache/incubator-pagespeed-ngx/wiki/Building-PSOL-From-Source

config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if [ "$mod_pagespeed_dir" = "unset" ] ; then
3535
This is a development branch of ngx_pagespeed, which means there is no
3636
precompiled PSOL library available to link against. Either build from a
3737
release tag, like latest-beta, or build PSOL from source:
38-
https://github.com/pagespeed/ngx_pagespeed/wiki/Building-PSOL-From-Source"
38+
https://github.com/apache/incubator-pagespeed-ngx/wiki/Building-PSOL-From-Source"
3939
exit 1
4040
fi
4141

scripts/build_ngx_pagespeed.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ Not deleting $directory; name is suspiciously short. Something is wrong."
608608
fi
609609
fi
610610
else
611-
nps_baseurl="https://github.com/pagespeed/ngx_pagespeed/archive"
611+
nps_baseurl="https://github.com/apache/incubator-pagespeed-ngx/archive"
612612
nps_downloaded="$TEMPDIR/$nps_downloaded_fname.zip"
613613
status "Downloading ngx_pagespeed..."
614614
run wget "$nps_baseurl/$tag_name.zip" -O "$nps_downloaded"

scripts/pagespeed_libraries_generator.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
# Converts pagespeed_libraries.conf from Apache-format to Nginx-format,
1818
# supporting the canonicalize_javascript_libraries filter.
19-
# Inspired by https://github.com/pagespeed/ngx_pagespeed/issues/532
19+
# Inspired by https://github.com/apache/incubator-pagespeed-ngx/issues/532
2020
#
2121
# Usage:
2222
# scripts/pagespeed_libraries_generator.sh > pagespeed_libraries.conf
@@ -27,7 +27,7 @@
2727
# Author: [email protected] (Vid Luther)
2828
# [email protected] (Jeff Kaufman)
2929

30-
URL="https://github.com/pagespeed/mod_pagespeed/raw/master/"
30+
URL="https://github.com/apache/incubator-pagespeed-mod/raw/master/"
3131
URL+="net/instaweb/genfiles/conf/pagespeed_libraries.conf"
3232
curl -L -s -S "$URL" \
3333
| grep ModPagespeedLibrary \

src/ngx_base_fetch.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ void NgxBaseFetch::ReadCallback(const ps_event_data& data) {
152152
ps_request_ctx_t* ctx = ps_get_request_context(r);
153153

154154
// If our request context was zeroed, skip this event.
155-
// See https://github.com/pagespeed/ngx_pagespeed/issues/1081
155+
// See https://github.com/apache/incubator-pagespeed-ngx/issues/1081
156156
if (ctx == NULL) {
157157
// Should not happen normally, when it does this message will cause our
158158
// system tests to fail.

src/ngx_event_connection.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ bool NgxEventConnection::Init(ngx_cycle_t* cycle) {
5454
pipe_write_fd_ = file_descriptors[1];
5555
// Attempt to bump the pipe capacity, because running out of buffer space
5656
// can potentially lead up to writes spinning on EAGAIN.
57-
// See https://github.com/pagespeed/ngx_pagespeed/issues/1380
57+
// See https://github.com/apache/incubator-pagespeed-ngx/issues/1380
5858
// TODO(oschaaf): Consider implementing a queueing mechanism for retrying
5959
// failed writes.
6060
#ifdef F_SETPIPE_SZ

src/ngx_fetch.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// TODO(oschaaf): style: reindent namespace according to google C++ style guide
3131
// TODO(oschaaf): Retry mechanism for failures on a re-used k-a connection.
3232
// Currently we don't think it's going to be an issue, see the comments at
33-
// https://github.com/pagespeed/ngx_pagespeed/pull/781.
33+
// https://github.com/apache/incubator-pagespeed-ngx/pull/781.
3434

3535
extern "C" {
3636
#include <nginx.h>

src/ngx_pagespeed.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ char* ps_srv_configure(ngx_conf_t* cf, ngx_command_t* cmd, void* conf);
718718
char* ps_loc_configure(ngx_conf_t* cf, ngx_command_t* cmd, void* conf);
719719

720720
// We want NGX_CONF_MULTI for some very old versions:
721-
// https://github.com/pagespeed/ngx_pagespeed/commit/66f1b9aa
721+
// https://github.com/apache/incubator-pagespeed-ngx/commit/66f1b9aa
722722
// but it's gone in recent revisions, so provide a compat #define if needed
723723
#ifndef NGX_CONF_MULTI
724724
#define NGX_CONF_MULTI 0
@@ -2363,7 +2363,7 @@ ngx_int_t ps_html_rewrite_header_filter(ngx_http_request_t* r) {
23632363
}
23642364

23652365
ps_strip_html_headers(r);
2366-
// See https://github.com/pagespeed/ngx_pagespeed/issues/819
2366+
// See https://github.com/apache/incubator-pagespeed-ngx/issues/819
23672367
ctx->location_field_set = r->headers_out.location != NULL;
23682368

23692369
// TODO(jefftk): is this thread safe?
@@ -3135,7 +3135,7 @@ ngx_int_t ps_init_module(ngx_cycle_t* cycle) {
31353135
ps_main_conf_t* cfg_m = static_cast<ps_main_conf_t*>(
31363136
ngx_http_cycle_get_module_main_conf(cycle, ngx_pagespeed));
31373137

3138-
// See https://github.com/pagespeed/ngx_pagespeed/issues/1220
3138+
// See https://github.com/apache/incubator-pagespeed-ngx/issues/1220
31393139
if (cfg_m == NULL) {
31403140
return NGX_OK;
31413141
}

src/ngx_rewrite_driver_factory.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ RewriteOptions* NgxRewriteDriverFactory::NewRewriteOptions() {
151151
// mod_pagespeed does in mod_instaweb.cc:create_dir_config() isn't enough here
152152
// -- if you use that instead then ngx_pagespeed doesn't actually end up
153153
// defaulting CoreFilters.
154-
// See: https://github.com/pagespeed/ngx_pagespeed/issues/1190
154+
// See: https://github.com/apache/incubator-pagespeed-ngx/issues/1190
155155
options->SetRewriteLevel(RewriteOptions::kCoreFilters);
156156
return options;
157157
}

0 commit comments

Comments
 (0)