Skip to content

Commit

Permalink
Switch URLs to https:, where available.
Browse files Browse the repository at this point in the history
These resources are all available over https; prefer that version, to avoid
an initial plaintext connection.
  • Loading branch information
josephw committed Jun 3, 2019
1 parent 5bec683 commit 7466721
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ Author: Martin Blais
Author-Email: [email protected]
ChangeLog: http://furius.ca/beancount/CHANGES
Bugs-Reporting: mailto:[email protected]
Download-Snapshots: http://bitbucket.org/blais/beancount
Download-Snapshots: https://bitbucket.org/blais/beancount
License: GNU GPLv2 only
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Download & Installation
You can obtain the source code from the official Mercurial repository on
BitBucket:

| http://bitbucket.org/blais/beancount/
| https://bitbucket.org/blais/beancount/

See the `Installing Beancount`__ document for more details.

Expand All @@ -54,7 +54,7 @@ Filing Bugs

Tickets can be filed at on the BitBucket project page:

http://bitbucket.org/blais/beancount/issues
https://bitbucket.org/blais/beancount/issues


Copyright and License
Expand Down
8 changes: 4 additions & 4 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -3862,7 +3862,7 @@ http://furius.ca/beancount/doc/proposal-query
- Make the parser reentrant [2014-08-02]. This is _not_ a difficult task.

* Follow this:
http://www.lemoda.net/c/reentrant-parser/
https://www.lemoda.net/c/reentrant-parser/
http://flex.sourceforge.net/manual/Extra-Data.html
to remove all globals from my lexer and make it truly reentrant and free of globals.

Expand All @@ -3877,7 +3877,7 @@ http://furius.ca/beancount/doc/proposal-query

You also need to redefine yyerror() accordingly. I've done it and it
works, it's simple, it's a 20 minute change:
http://www.gnu.org/software/bison/manual/html_node/Parser-Function.html
https://www.gnu.org/software/bison/manual/html_node/Parser-Function.html

* You also need to make the lexer reentrant:
http://flex.sourceforge.net/manual/Reentrant-Overview.html#Reentrant-Overview
Expand Down Expand Up @@ -4037,7 +4037,7 @@ http://furius.ca/beancount/doc/proposal-query

** Financial Ratio Analysis

- Add these: http://www.csun.edu/~bjc20362/Controlling-2.pdf
- Add these: https://www.csun.edu/~bjc20362/Controlling-2.pdf

** Trades

Expand Down Expand Up @@ -4229,7 +4229,7 @@ http://furius.ca/beancount/doc/proposal-query

- Move the TreeMaps experimental script for Expenses and Assets subtrees into
the bean-web codebase:
http://bost.ocks.org/mike/treemap/
https://bost.ocks.org/mike/treemap/
(Or maybe that would just be left for fava.)

** Rendering Documents
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ environment:
matrix:

# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# https://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.

Expand Down
2 changes: 1 addition & 1 deletion beancount/parser/grammar.y
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ const char* getTokenName(int token);

/* Operator precedence.
* This is pulled straight out of the textbook example:
* http://www.gnu.org/software/bison/manual/html_node/Infix-Calc.html#Infix-Calc
* https://www.gnu.org/software/bison/manual/html_node/Infix-Calc.html#Infix-Calc
*/
%left MINUS PLUS
%left ASTERISK SLASH
Expand Down
2 changes: 1 addition & 1 deletion beancount/prices/sources/oanda.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Valid tickers are in the form "XXX_YYY", such as "EUR_USD".
Here is the API documentation:
http://developer.oanda.com/rest-live/rates/
https://developer.oanda.com/rest-live/rates/
For example:
https://api-fxtrade.oanda.com/v1/candles?instrument=EUR_USD&granularity=D&start=2016-03-27T00%3A00%3A00Z&end=2016-04-04T00%3A00%3A00Z&candleFormat=midpoint
Expand Down
2 changes: 1 addition & 1 deletion beancount/reports/gviz.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def gviz_timeline(time_array, data_array_map, css_id='chart'):
# Write preamble.
oss = io.StringIO()

oss.write('<script src="http://www.google.com/jsapi" type="text/javascript">'
oss.write('<script src="https://www.google.com/jsapi" type="text/javascript">'
'</script>\n')
oss.write('<script type="text/javascript">\n')

Expand Down
2 changes: 1 addition & 1 deletion beancount/utils/misc_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def import_curses():
"""
# Note: There's a recipe for getting terminal size on Windows here, without
# curses, I should probably implement that at some point:
# http://stackoverflow.com/questions/263890/how-do-i-find-the-width-height-of-a-terminal-window
# https://stackoverflow.com/questions/263890/how-do-i-find-the-width-height-of-a-terminal-window
# Also, consider just using 'blessings' instead, which provides this across
# multiple platforms.
import curses
Expand Down
6 changes: 3 additions & 3 deletions beancount/web/web.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

<link href="http://fonts.googleapis.com/css?family=Roboto+Condensed:400italic,700italic,700,400" rel="stylesheet" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Roboto:400italic,700italic,700,400" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css' />
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400italic,700italic,700,400" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto:400italic,700italic,700,400" rel="stylesheet" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css' />

<link href="/resources/web.css" rel="stylesheet" type="text/css" />
<title>{{title}}: {{pagetitle}}</title>
Expand Down
2 changes: 1 addition & 1 deletion experiments/docs/framedocs.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Bree+Serif' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Bree+Serif' rel='stylesheet' type='text/css'>
<style>
html, body {{ min-height:100%; padding:0; margin:0; }}
#wrapper {{ padding-top: 24px; position:absolute; top:0; bottom:0; left:0; right:0; }}
Expand Down
2 changes: 1 addition & 1 deletion experiments/options/option-name.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""Parse and/or convert option names given on the command-line.
This requires the Ameritrade package.
http://bitbucket.org/blais/ameritrade/
https://bitbucket.org/blais/ameritrade/
"""
__copyright__ = "Copyright (C) 2018 Martin Blais"
__license__ = "GNU GPLv2"
Expand Down
4 changes: 2 additions & 2 deletions experiments/v3/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ http_archive(
sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",
strip_prefix = "zlib-1.2.11",
urls = [
"http://mirror.bazel.build/zlib.net/fossils/zlib-1.2.11.tar.gz",
"http://zlib.net/fossils/zlib-1.2.11.tar.gz",
"https://mirror.bazel.build/zlib.net/fossils/zlib-1.2.11.tar.gz",
"https://zlib.net/fossils/zlib-1.2.11.tar.gz",
],
)

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h1><a class="toc-backref" href="#id4">Download &amp; Installation</a></h1>
BitBucket:</p>
<blockquote>
<div class="line-block">
<div class="line"><a class="reference external" href="http://bitbucket.org/blais/beancount/">http://bitbucket.org/blais/beancount/</a></div>
<div class="line"><a class="reference external" href="https://bitbucket.org/blais/beancount/">https://bitbucket.org/blais/beancount/</a></div>
</div>
</blockquote>
<p>See the <a class="reference external" href="http://furius.ca/beancount/doc/install">Installing Beancount</a> document for more details.</p>
Expand All @@ -66,7 +66,7 @@ <h1><a class="toc-backref" href="#id4">Download &amp; Installation</a></h1>
<h1><a class="toc-backref" href="#id5">Filing Bugs</a></h1>
<p>Tickets can be filed at on the BitBucket project page:</p>
<blockquote>
<a class="reference external" href="http://bitbucket.org/blais/beancount/issues">http://bitbucket.org/blais/beancount/issues</a></blockquote>
<a class="reference external" href="https://bitbucket.org/blais/beancount/issues">https://bitbucket.org/blais/beancount/issues</a></blockquote>
</div>
<div class="section" id="copyright-and-license">
<h1><a class="toc-backref" href="#id6">Copyright and License</a></h1>
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# database definitions as well, although it is inferior to pytz, but
# because it can use the OS timezone database in the Windows
# registry. See this article for context:
# http://www.assert.cc/2014/05/25/which-python-time-zone-library.html
# https://www.assert.cc/2014/05/25/which-python-time-zone-library.html
# However, for creating offset timezones, we use the datetime.timezone
# helper class because it is built-in.
# Where this matters is for price source fetchers.
Expand Down Expand Up @@ -230,7 +230,7 @@ def get_git_changeset():
author="Martin Blais",
author_email="[email protected]",
url="http://furius.ca/beancount",
download_url="http://bitbucket.org/blais/beancount",
download_url="https://bitbucket.org/blais/beancount",

packages = [
'beancount',
Expand Down

0 comments on commit 7466721

Please sign in to comment.