Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GP: Duplicate meta descriptions #716

Merged
merged 36 commits into from
Jan 2, 2025
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
0c6cd67
GpTerms: add page description
xbpcb Dec 16, 2024
56a8eb7
GpNetwTools: add page descr
xbpcb Dec 16, 2024
ca63a22
GpNetwork: add page descr
xbpcb Dec 16, 2024
ed075a6
GpAPI: add page descr
xbpcb Dec 16, 2024
96a36ea
GpAuthApi: add page descr
xbpcb Dec 16, 2024
7b3c1be
GpNetTools: fix title handling
xbpcb Dec 17, 2024
23b1700
Merge branch 'master' into gh-715
xbpcb Dec 18, 2024
cd286cd
GpNetTools: fix navigation to a new page
xbpcb Dec 18, 2024
3f0d00a
GpNetTools: upd title-descr logic
xbpcb Dec 18, 2024
69737a1
GpNetTools: upd comment
xbpcb Dec 18, 2024
aab2427
Update descriptions
MartinKolarik Dec 19, 2024
fece164
GpNetTools: upd title and descr logic
xbpcb Dec 19, 2024
12c9c39
Merge branch 'gh-715' of https://github.com/jsdelivr/www.jsdelivr.com…
xbpcb Dec 19, 2024
da90967
GpNetTools: mv computed title and descr to onconfig event
xbpcb Dec 19, 2024
9ed5789
GpNetTools: fix title,descr handling
xbpcb Dec 19, 2024
cb49bcd
Gp: mod routes to handle redirect on wrong meas type
xbpcb Dec 20, 2024
cd4e8c3
Gp: small fix to net-tools routing
xbpcb Dec 20, 2024
cc8bf4d
Gp: improve net-tools routing, add comments
xbpcb Dec 20, 2024
e2123b7
Gp: mod net-tools routing
xbpcb Dec 20, 2024
80e2fed
GpNetTools: rm unnecessary checks and redirections
xbpcb Dec 20, 2024
4d634f8
Fix linter issues
xbpcb Dec 20, 2024
c681dda
GpNetTools: fix typo
xbpcb Dec 20, 2024
7424219
GpNetTools: get rid of redundant logic and vars
xbpcb Dec 20, 2024
ffbc5e4
Gp: fix netTools route
xbpcb Dec 23, 2024
526e482
Merge pull request #719 from jsdelivr/gh-715-rework
xbpcb Dec 23, 2024
ede1820
Merge branch 'master' into gh-715
MartinKolarik Dec 30, 2024
c80b168
Update globalping.js
MartinKolarik Dec 30, 2024
9dc747b
GpNetTools: fix raw loc parsing
xbpcb Dec 30, 2024
39d03c5
Gp: fix net-tools routing
xbpcb Dec 30, 2024
7f8cc5d
GpNetTools: fix rawLoc hadling
xbpcb Dec 30, 2024
144dbe9
GpNetTools: redirect pure test types to from-world
xbpcb Dec 30, 2024
1bfb25c
GpNetTools: mod client side url handling
xbpcb Dec 30, 2024
5e3a4e6
Gp: fix routing
xbpcb Dec 30, 2024
ea0778e
Gp: fix netTools routing case handling
xbpcb Dec 30, 2024
017d3be
Merge branch 'gh-715' of github.com:jsdelivr/www.jsdelivr.com into gh…
MartinKolarik Jan 2, 2025
8852f4e
Merge branch 'master' into gh-715
MartinKolarik Jan 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/routes/globalping.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ koaElasticUtils.addRoutes(router, [
* Network tools pages.
*/
koaElasticUtils.addRoutes(router, [
[ '/network-tools', '/network-tools/:params?' ],
xbpcb marked this conversation as resolved.
Show resolved Hide resolved
[ '/network-tools/:params?' ],
], async (ctx) => {
let data;
let { params = '' } = ctx.params;
Expand Down