Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hiro
Tor
Commits
d2147cc7
Commit
d2147cc7
authored
11 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Fix hyphen handling in format_changelog
parent
03ce7332
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+6
-6
6 additions, 6 deletions
ChangeLog
contrib/format_changelog.py
+2
-1
2 additions, 1 deletion
contrib/format_changelog.py
with
8 additions
and
7 deletions
ChangeLog
+
6
−
6
View file @
d2147cc7
...
...
@@ -77,9 +77,9 @@ Changes in version 0.2.5.4-alpha - 2014-04-25
FreeBSD. To enable it, set "TransProxyType ipfw". Resolves ticket
10267; patch from "yurivict".
- Support OpenBSD's divert-to rules with the pf firewall for
transparent proxy ports. To enable it, set "TransProxyType
pf-
divert". This allows Tor to run a TransPort transparent proxy
port
on OpenBSD 4.4 or later without root privileges. See the
transparent proxy ports. To enable it, set "TransProxyType
pf-
divert". This allows Tor to run a TransPort transparent proxy
port
on OpenBSD 4.4 or later without root privileges. See the
pf.conf(5) manual page for information on configuring pf to use
divert-to rules. Closes ticket 10896; patch from Dana Koch.
...
...
@@ -187,9 +187,9 @@ Changes in version 0.2.5.4-alpha - 2014-04-25
CPPFLAGS. Fixes bug 11296; bugfix on 0.2.5.3-alpha.
o Minor bugfixes (bridges):
- Avoid potential crashes or bad behavior when launching a
server-
side managed proxy with ORPort or ExtORPort temporarily
disabled.
Fixes bug 9650; bugfix on 0.2.3.16-alpha.
- Avoid potential crashes or bad behavior when launching a
server-
side managed proxy with ORPort or ExtORPort temporarily
disabled.
Fixes bug 9650; bugfix on 0.2.3.16-alpha.
o Minor bugfixes (platform-specific):
- Fix compilation on Solaris, which does not have <endian.h>. Fixes
...
...
This diff is collapsed.
Click to expand it.
contrib/format_changelog.py
+
2
−
1
View file @
d2147cc7
...
...
@@ -110,7 +110,8 @@ class ChangeLog(object):
text
=
"
"
.
join
(
re
.
sub
(
r
'
\s+
'
,
'
'
,
line
.
strip
())
for
line
in
par
)
print
textwrap
.
fill
(
text
,
width
=
72
,
initial_indent
=
"
"
*
indent1
,
subsequent_indent
=
"
"
*
indent2
)
subsequent_indent
=
"
"
*
indent2
,
break_on_hyphens
=
False
)
def
dump
(
self
):
print
self
.
mainhead
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment