Skip to content

Commit 4c835b9

Browse files
authored
Use https for links (#293)
1 parent c49d9fa commit 4c835b9

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

README.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following table shows the impact of using caching:
2020

2121
Notice that for the current version, caching is **not enabled** by default, since the caches take disk space. Use `-C readwrite` or `-C read` to enable it for a query, or add `caching_mode` to `.qrc` to set a new default.
2222

23-
q's web site is [http://harelba.github.io/q/](http://harelba.github.io/q/) or [https://q.textasdata.wiki](https://q.textasdata.wiki) It contains everything you need to download and use q immediately.
23+
q's web site is [https://harelba.github.io/q/](https://harelba.github.io/q/) or [https://q.textasdata.wiki](https://q.textasdata.wiki) It contains everything you need to download and use q immediately.
2424

2525

2626
## Usage Examples
@@ -36,12 +36,12 @@ $ ps -ef | q -H "SELECT UID, COUNT(*) cnt FROM - GROUP BY UID ORDER BY cnt DESC
3636
$ q "select count(*) from some_db.sqlite3:::albums a left join another_db.sqlite3:::tracks t on (a.album_id = t.album_id)"
3737
```
3838

39-
Detailed examples are in [here](http://harelba.github.io/q/#examples)
39+
Detailed examples are in [here](https://harelba.github.io/q/#examples)
4040

4141
## Installation.
4242
**New Major Version `3.1.6` is out with a lot of significant additions.**
4343

44-
Instructions for all OSs are [here](http://harelba.github.io/q/#installation).
44+
Instructions for all OSs are [here](https://harelba.github.io/q/#installation).
4545

4646
The previous version `2.0.19` Can still be downloaded from [here](https://github.com/harelba/q/releases/tag/2.0.19)
4747

bin/q.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#
2424
# Its purpose is to bring SQL expressive power to manipulating text data using the Linux command line.
2525
#
26-
# Full Documentation and details in http://harelba.github.io/q/
26+
# Full Documentation and details in https://harelba.github.io/q/
2727
#
2828
# Run with --help for command line details
2929
#
@@ -2399,7 +2399,7 @@ def print_credentials():
23992399
print("q version %s" % q_version, file=sys.stderr)
24002400
print("Python: %s" % " // ".join([str(x).strip() for x in sys.version.split("\n")]), file=sys.stderr)
24012401
print("Copyright (C) 2012-2021 Harel Ben-Attia ([email protected], @harelba on twitter)", file=sys.stderr)
2402-
print("http://harelba.github.io/q/", file=sys.stderr)
2402+
print("https://harelba.github.io/q/", file=sys.stderr)
24032403
print(file=sys.stderr)
24042404

24052405
class QWarning(object):

doc/USAGE.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Any standard SQL expression, condition (both WHERE and HAVING), GROUP BY, ORDER
5757

5858
JOINs are supported and Subqueries are supported in the WHERE clause, but unfortunately not in the FROM clause for now. Use table aliases when performing JOINs.
5959

60-
The SQL syntax itself is sqlite's syntax. For details look at http://www.sqlite.org/lang.html or search the net for examples.
60+
The SQL syntax itself is sqlite's syntax. For details look at https://www.sqlite.org/lang.html or search the net for examples.
6161

6262
**NOTE:** Full type detection is implemented, so there is no need for any casting or anything.
6363

mkdocs/docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ Query/Input/Output encodings are fully supported (and q tries to provide out-of-
303303
304304
JOINs are supported and Subqueries are supported in the WHERE clause, but unfortunately not in the FROM clause for now. Use table aliases when performing JOINs.
305305
306-
The SQL syntax itself is sqlite's syntax. For details look at http://www.sqlite.org/lang.html or search the net for examples.
306+
The SQL syntax itself is sqlite's syntax. For details look at https://www.sqlite.org/lang.html or search the net for examples.
307307
308308
NOTE: When using the `-O` output header option, use column name aliases if you want to control the output column names. For example, `q -O -H "select count(*) cnt,sum(*) as mysum from -"` would output `cnt` and `mysum` as the output header column names.
309309

mkdocs/docs/index_cn.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ q 的每一个参数都是由双引号包裹的一条完整的SQL语句。所有
8282

8383
在WHERE条件查询中,支持JOIN操作和子查询,但在FROM子句中并不支持。JOIN操作时,可以为文件起别名。
8484

85-
SQL语法同sqlite的语法,详情见 http://www.sqlite.org/lang.html 或上网找一些示例。
85+
SQL语法同sqlite的语法,详情见 https://www.sqlite.org/lang.html 或上网找一些示例。
8686

8787
**注意**
8888

mkdocs/mkdocs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
site_name: q - Text as Data
2-
site_url: http://harelba.github.io/q/
3-
repo_url: http://github.com/harelba/q
2+
site_url: https://harelba.github.io/q/
3+
repo_url: https://github.com/harelba/q
44
edit_uri: ""
55
site_description: Text as Data - q is a command line tool that allows direct execution of SQL-like queries on CSVs/TSVs (and any other tabular text files).
66
site_author: Harel Ben-Attia

0 commit comments

Comments
 (0)