Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
35be2c9
Merge pull request #7335 from nmelehan-akamai/rc-v1.387.0
nmelehan-akamai Sep 10, 2025
f85a062
Merge pull request #7342 from nmelehan-akamai/rc-v1.388.0
nmelehan-akamai Oct 3, 2025
a055786
Added SVN-related terms to dictionary
DHBR2 Oct 7, 2025
024a649
Added SVN install guide for Ubuntu 24.04
DHBR2 Oct 7, 2025
17739cd
Update index.md
DHBR2 Oct 8, 2025
fd2e1dc
Update index.md
DHBR2 Oct 9, 2025
e06bf2e
Update index.md
DHBR2 Oct 9, 2025
2e4518d
Update index.md
DHBR2 Oct 10, 2025
6c28776
Fix nested docs folder structure and reorganize file paths
DHBR2 Oct 10, 2025
44fc41f
Merge pull request #7347 from nmelehan-akamai/rc-v1.389.0
nmelehan-akamai Oct 14, 2025
4f975d3
Fresh start: added SVN guide for Ubuntu 24.04
DHBR2 Oct 18, 2025
9e6ff2c
Revise SVN installation guide for Ubuntu 24.04
DHBR2 Oct 18, 2025
76594b9
Revise SVN installation guide for Ubuntu 24.04
DHBR2 Oct 18, 2025
8f3f6ea
Add SVN guide to correct folder
DHBR2 Oct 20, 2025
b6de376
Remove both versions of SVN guide to reset structure
DHBR2 Oct 20, 2025
ef4c113
Add clean SVN guide to correct folder
DHBR2 Oct 21, 2025
e7bddf5
Update Vale dictionary for SVN guide
DHBR2 Oct 21, 2025
3ab0479
Update Vale dictionary and some content for SVN guide
DHBR2 Oct 21, 2025
4cceb7a
Corrected command formatting
DHBR2 Oct 21, 2025
0470959
Added metadata content and modified opening content
DHBR2 Oct 23, 2025
f349b1a
Update link to Introduction to Version Control
DHBR2 Oct 23, 2025
c904b25
Removed incorrect metadata added after comparison review
DHBR2 Oct 23, 2025
4297cd9
Resolve merge conflict in ci/vale/dictionary.txt
DHBR2 Oct 23, 2025
c4deb81
Merge branch 'installing-svn-on-ubuntu-24-04' of https://github.com/l…
DHBR2 Oct 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
138 changes: 69 additions & 69 deletions docs/assets/scripts/website.py → assets/scripts/website.py
Original file line number Diff line number Diff line change
@@ -1,69 +1,69 @@
import datetime
import time
import random
from bottle import route, run, template
# --------------------------------------------------------------
# Import the zipkin module as a namespace
#
import py_zipkin.zipkin as zp
# --------------------------------------------------------------
# Send our timing data to the zipkin server. Make sure that
# ZIPKIN_SERVER is set to the IP of the ZipKin server.
# Change the localhost ip 127.0.0.1 to the ip of the
# ZipKin server.
#
def http_transport(encoded_span):
import requests
ZIPKIN_SERVER = "127.0.0.1"
r = requests.post(
'http://%s:9411/api/v1/spans' % ZIPKIN_SERVER,
data = encoded_span,
headers = {'Content-Type': 'application/x-thrift'},
)
assert r.status_code == 202, "ERROR: span not accepted by Zipkin"
# ---------------------------------------------------------------------
# When this function is called within the context of its span, defined
# in the index page, it will label this function as external_service1.
#
@zp.zipkin_span(service_name='webapp', span_name='external_service1')
def external_service1():
time.sleep( random.randint(1,2))Make 1 modification to the file.
# ---------------------------------------------------------------------
# When this function is called within the context of its span, defined
# in the index page, it will label this function as external_service2.
#
@zp.zipkin_span(service_name='webapp', span_name='external_service2')
def external_service2():
time.sleep( random.randint(1,3))
@route('/')
def index():
now = datetime.datetime.today()
# ---------------------------------------------------------------------
# Create the span "webapp" and its callback handler - "http_transport"
# Notice that both of our functions are called within the body of the
# zipkin_span.
#
with zp.zipkin_span(
service_name ="webapp",
span_name='index',
transport_handler = http_transport,
port=5000,
sample_rate= 100):
external_service1()
time.sleep(random.randint(1,3))
external_service2()
later = datetime.datetime.today()
return template('<b>Started {{today}} but finished {{later}}</b>!',
today=now.ctime(), later=later.ctime())
run(host='localhost', port=8080, reloader=True)
import datetime
import time
import random
from bottle import route, run, template

# --------------------------------------------------------------
# Import the zipkin module as a namespace
#
import py_zipkin.zipkin as zp

# --------------------------------------------------------------
# Send our timing data to the zipkin server. Make sure that
# ZIPKIN_SERVER is set to the IP of the ZipKin server.
# Change the localhost ip 127.0.0.1 to the ip of the
# ZipKin server.
#
def http_transport(encoded_span):
import requests
ZIPKIN_SERVER = "127.0.0.1"

r = requests.post(
'http://%s:9411/api/v1/spans' % ZIPKIN_SERVER,
data = encoded_span,
headers = {'Content-Type': 'application/x-thrift'},
)

assert r.status_code == 202, "ERROR: span not accepted by Zipkin"

# ---------------------------------------------------------------------
# When this function is called within the context of its span, defined
# in the index page, it will label this function as external_service1.
#
@zp.zipkin_span(service_name='webapp', span_name='external_service1')
def external_service1():
time.sleep( random.randint(1,2))Make 1 modification to the file.

# ---------------------------------------------------------------------
# When this function is called within the context of its span, defined
# in the index page, it will label this function as external_service2.
#
@zp.zipkin_span(service_name='webapp', span_name='external_service2')
def external_service2():
time.sleep( random.randint(1,3))

@route('/')
def index():
now = datetime.datetime.today()

# ---------------------------------------------------------------------
# Create the span "webapp" and its callback handler - "http_transport"
# Notice that both of our functions are called within the body of the
# zipkin_span.
#
with zp.zipkin_span(
service_name ="webapp",
span_name='index',
transport_handler = http_transport,
port=5000,
sample_rate= 100):
external_service1()
time.sleep(random.randint(1,3))
external_service2()

later = datetime.datetime.today()

return template('<b>Started {{today}} but finished {{later}}</b>!',
today=now.ctime(), later=later.ctime())

run(host='localhost', port=8080, reloader=True)
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions ci/vale/dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ aniszczyk
anonymization
anonymize
anonymizing
anotheruser
ansi
ansible
ansible's
Expand Down Expand Up @@ -182,6 +183,7 @@ basename
bashdoor
bashrc
bc
bcrypt
bdd
bellovin
benchmarked
Expand Down Expand Up @@ -557,6 +559,7 @@ devel
devfs
devops
devpts
devteam
devtmpfs
dex
df
Expand All @@ -578,6 +581,7 @@ direnv
dirtycow
discoverability
diskpart
dismod
disqus
distro
distros
Expand Down Expand Up @@ -674,6 +678,7 @@ emisoft
emojivoto
emscripten
EMTs
enconf
ender
enduser
enix
Expand Down Expand Up @@ -994,6 +999,7 @@ host1
host2
hostname
hostnames
hotcopy
hotfix
hotfixes
hotlink
Expand Down Expand Up @@ -1330,7 +1336,10 @@ lf
li181
li263
lib32
libapache
libaprutil1
libapache
libapache2
libc
libc6
libcontainer
Expand Down Expand Up @@ -2010,6 +2019,7 @@ procfile
procmail
procs
productpage
projectname
prolog
promlens
promo_codes
Expand Down Expand Up @@ -2321,6 +2331,7 @@ setguid
setsebool
setters
setuid
setuuid
setuptools
Severalnines
sfadmin
Expand Down Expand Up @@ -2491,6 +2502,9 @@ sury
suse
Sussman
svn
svnadmin
svnserve
svnuser
swappable
swappiness
symantec
Expand Down Expand Up @@ -2549,6 +2563,7 @@ testdeep
testfile
testkeys
testparam
testproject
testuser
tetris
tf
Expand Down Expand Up @@ -2981,8 +2996,10 @@ yoast
yourdomain
yourdomainorsubdomainhere
yourname
yourserver
yourservice
yoursite
yourusername
youtube
yubico
yubikey
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading