Skip to content
This repository has been archived by the owner on Jan 19, 2019. It is now read-only.

Update links to https #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ATTRIBUTION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Large Glasses by Kyle Scott, from The Noun Project
CC-BY 3.0
http://thenounproject.com/term/glasses/1017/
https://thenounproject.com/term/glasses/1017/
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gem 'http_accept_language'
gem 'mechanize', require: false
gem 'prawn', '1.0.0'
gem 'prawn-qrcode'
gem 'prawn-rails', git: 'git://github.com/cortiz/prawn-rails.git', ref: 'c276c1b601e3'
gem 'prawn-rails', git: 'https://github.com/cortiz/prawn-rails.git', ref: 'c276c1b601e3'

group :development do
gem 'better_errors'
Expand All @@ -39,7 +39,7 @@ end
group :test do
gem 'simplecov', require: false
gem 'codeclimate-test-reporter', require: nil
gem 'poltergeist', git: 'git://github.com/teampoltergeist/poltergeist.git'
gem 'poltergeist', git: 'https://github.com/teampoltergeist/poltergeist.git'
gem 'capybara-screenshot'
gem 'database_cleaner'
gem 'factory_girl_rails'
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GIT
remote: git://github.com/cortiz/prawn-rails.git
remote: https://github.com/cortiz/prawn-rails.git
revision: c276c1b601e3fd3bcf9e6edd04da6330419b2d12
ref: c276c1b601e3
specs:
Expand All @@ -8,7 +8,7 @@ GIT
rails (>= 3.1.0)

GIT
remote: git://github.com/teampoltergeist/poltergeist.git
remote: https://github.com/teampoltergeist/poltergeist.git
revision: 3aec468f9f0f93570b6c58bfd7f67e4cf1a9d360
specs:
poltergeist (1.5.1)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cd /var/www

# Install HipsterPizza and its dependencies:
sudo -u www-data -s
git clone git://github.com/breunigs/hipsterpizza
git clone https://github.com/breunigs/hipsterpizza.git
cd hipsterpizza

/usr/bin/bundle --deployment --without development test
Expand Down
2 changes: 1 addition & 1 deletion app/assets/javascripts/_guess_postcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var HIPSTER = (function (my) {
}

function queryNominatim(pos) {
var url = 'http://nominatim.openstreetmap.org/reverse?format=json&zoom=18';
var url = 'https://nominatim.openstreetmap.org/reverse?format=json&zoom=18';
var c = pos.coords;
var coords = '&lat='+c.latitude+'&lon='+c.longitude;
my.log('Querying Nominatim at ' + coords);
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def replay_mode
def stream(template)
response.headers['X-Accel-Buffering'] = 'no'

# via http://stackoverflow.com/a/748646/1684530
# via https://stackoverflow.com/a/748646/1684530
# ensure that streamed pages are never cached
response.headers['Cache-Control'] = 'no-cache, no-store, max-age=0, must-revalidate'
response.headers['Pragma'] = 'no-cache'
Expand Down
2 changes: 1 addition & 1 deletion app/validators/json_validator.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# encoding: utf-8

# via http://stackoverflow.com/a/19445201/1684530
# via https://stackoverflow.com/a/19445201/1684530
# license: CC-BY-SA 3.0

# Put this code in lib/validators/json_validator.rb
Expand Down
2 changes: 1 addition & 1 deletion app/views/basket/fax.pdf.prawn
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if @fax_config['lat'] && @fax_config['lon']
lat = @fax_config['lat']
lon = @fax_config['lon']

osm = "http://www.osm.org/?mlat=#{lat}&mlon=#{lon}#map=17/#{lat}/#{@fax_config['lon']}"
osm = "https://www.openstreetmap.org/?mlat=#{lat}&mlon=#{lon}#map=17/#{lat}/#{lon}"
gmaps = "https://maps.google.de/maps?q=#{lat},#{lon}&num=1&t=m&z=18"

size = 100
Expand Down
2 changes: 1 addition & 1 deletion app/views/main/privacy.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
dl.dl-horizontal
dt pizza.de
dd
a href="http://pizza.de/info/datenschutz" main.privacy.third_party.pizzade
a href="https://pizza.de/info/datenschutz" main.privacy.third_party.pizzade

h3 main.privacy.questions.header
p=I18n.t('main.privacy.questions.text', mail: '[email protected]').html_safe
2 changes: 1 addition & 1 deletion config/initializers/monkey_patch_logger.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# via http://cbpowell.wordpress.com/2013/08/09/beautiful-logging-for-ruby-on-rails-4/
# via https://cbpowell.wordpress.com/2013/08/09/beautiful-logging-for-ruby-on-rails-4/
class ActiveSupport::Logger::SimpleFormatter
SEVERITY_TO_TAG_MAP = {'DEBUG'=>'DBG', 'INFO'=>'NFO', 'WARN'=>'WRN', 'ERROR'=>'ERR', 'FATAL'=>'FTL', 'UNKNOWN'=>'???'}
SEVERITY_TO_COLOR_MAP = {'DEBUG'=>'0;37', 'INFO'=>'32', 'WARN'=>'33', 'ERROR'=>'31', 'FATAL'=>'31', 'UNKNOWN'=>'37'}
Expand Down
6 changes: 3 additions & 3 deletions config/locales/main/privacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ en:
header: Address Details
server:
header: On Server
details: 'Stored in <a href="http://en.wikipedia.org/wiki/SHA-2">scrambled form</a> as part of a basket. Used estimate delivery times for your address.'
details: 'Stored in <a href="https://en.wikipedia.org/wiki/SHA-2">scrambled form</a> as part of a basket. Used estimate delivery times for your address.'
browser:
header: In Browser
details: Stored in local storage and can be read by third party provider. Remove it using your browser’s cleaning tools.
Expand Down Expand Up @@ -64,7 +64,7 @@ de:
order: "Bestellungen: Nick, Zeitstempel, Produkte und deren Preise"
logs: "Server Logs: Seitenaufrufe mit Deiner IP, User Agent („Browser“) und Zeitstempel"

delete_method: 'Es wird kein <a href="http://de.wikipedia.org/wiki/Datenvernichtung">sicheres Löschen</a> verwendet, Daten könnten wiederherstellbar sein.'
delete_method: 'Es wird kein <a href="https://de.wikipedia.org/wiki/Datenvernichtung">sicheres Löschen</a> verwendet, Daten könnten wiederherstellbar sein.'

browser:
header: Browser
Expand All @@ -77,7 +77,7 @@ de:
header: Adressdaten
server:
header: Auf Server
details: 'Zusammen mit dem Warenkorb in <a href="http://de.wikipedia.org/wiki/SHA-2">zerhackter / gehashter Form</a> gespeichert. Wird benutzt um die Lieferzeit an eine Adresse vorherzusagen.'
details: 'Zusammen mit dem Warenkorb in <a href="https://de.wikipedia.org/wiki/SHA-2">zerhackter / gehashter Form</a> gespeichert. Wird benutzt um die Lieferzeit an eine Adresse vorherzusagen.'
browser:
header: Im Browser
details: Wird im Browser via Local Storage gespeichert. Kann von Drittanbietern gelesen werden. Entfernung mit den Reinigungstools des Browsers möglich.
Expand Down
2 changes: 1 addition & 1 deletion config/locales/order_table.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
en:
order_table:
# http://en.wikipedia.org/wiki/The_Lives_of_Others
# https://en.wikipedia.org/wiki/The_Lives_of_Others
heading: The Orders of Others

id: ID
Expand Down
2 changes: 1 addition & 1 deletion db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
# Mayor.create(name: 'Emanuel', city: cities.first)
# Environment variables (ENV['...']) can be set in the file config/application.yml.
# See http://railsapps.github.io/rails-environment-variables.html
# See https://railsapps.github.io/rails-environment-variables.html
2 changes: 1 addition & 1 deletion docs/DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Please continue with the normal guide starting at [webserver integration](../REA
You can also build your own Docker image from HipsterPizza’s source. Below are the basic steps need to do this. Please refer to Docker’s documentation for everything else:

```
git clone git://github.com/breunigs/hipsterpizza
git clone https://github.com/breunigs/hipsterpizza.git
cd hipsterpizza
# (make some changes)
docker build --tag MYPIZZA .
Expand Down
2 changes: 1 addition & 1 deletion script/get_bundler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

cd $(dirname $0)
cd ..
wget --quiet -O - "http://www.yrden.de/share/bundler/hipsterpizza.tar.xz" | tar -xJf -
wget --quiet -O - "https://www.yrden.de/share/bundler/hipsterpizza.tar.xz" | tar -xJf -

# if the server is down or the file corrupt, contine install normally
exit 0
Expand Down
2 changes: 1 addition & 1 deletion vendor/assets/javascripts/sha512.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.