This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Refactor for Python3 (#28091) #23
Open
traumschule
wants to merge
12
commits into
TheTorProject:master
Choose a base branch
from
traumschule:python3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
163ea5f
Testing project pages
ilv 6e9053c
Base idea for landing page
ilv 471c052
Updating landing page.
ilv 6beecb0
Updating landing page.
ilv 0cbc510
Updating landing page.
ilv f77e2bc
Updating landing page.
ilv 523bdde
Updating landing page.
ilv 9bb2dd6
Merge branch 'gh-pages' of https://github.com/thetorproject/gettor
ilv b5df39a
Added more locales to landing page
ilv dce9da5
Improved templates for readme and landing
ilv 9fa016d
Improve xmpp message
ilv 3ce2f87
gussy up for python3 (#28091)
traumschule File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__pycache__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* Fonts */ | ||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local('Lato Regular'), local('Lato-Regular'), url('../fonts/lato-regular.woff') format('woff'); | ||
} | ||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: local('Lato Bold'), local('Lato-Bold'), url('../fonts/lato-bold.woff') format('woff'); | ||
} | ||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: italic; | ||
font-weight: 400; | ||
src: local('Lato Italic'), local('Lato-Italic'), url('../fonts/lato-italic.woff') format('woff'); | ||
} | ||
|
||
body { | ||
padding-bottom: 20px; | ||
/*background-color: #4ba027;*/ | ||
} | ||
|
||
footer { | ||
color: #aaa; | ||
} | ||
|
||
a:link, a:visited { | ||
color: #AF02D7; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
color: #65007D; | ||
} | ||
|
||
#main { | ||
background-color: #fff; | ||
margin: 5% 0; | ||
font-family: "Lato"; | ||
font-size: 16px; | ||
font-weight: lighter; | ||
} | ||
|
||
#main h2 { | ||
color: #8500A3; | ||
} | ||
|
||
#head-title { | ||
color: #fff !important; | ||
font-size: 23px; | ||
} | ||
|
||
#head-link { | ||
text-align: right; | ||
} | ||
|
||
#head-link a:link { | ||
color: #ccc; | ||
} | ||
|
||
#head-link a:hover { | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
|
||
.navbar { | ||
background-color: #770093 !important; | ||
} | ||
|
||
.pad-big-left { | ||
padding-left: 110px; | ||
} | ||
|
||
.pad-big-right { | ||
padding-right: 110px; | ||
} | ||
|
||
.big-link { | ||
font-size: 26px; | ||
} |
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's not do an unconditional
except:
-- instead, let's catch specific exceptions.