This patch has been moved and incrorporated into a git repository of it's own. Please see https://gitlab.com/aur-linux-surface/kernel.
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
From 9f674b615340ec68e9879b02980215df24b7fec9 Mon Sep 17 00:00:00 2001 | |
From: Daniel Wilhelm <[email protected]> | |
Date: Thu, 24 Nov 2016 11:23:35 +0100 | |
Subject: [PATCH] bump to 0.7.13 | |
--- | |
.SRCINFO | 12 ++++++------ | |
PKGBUILD | 6 +++--- | |
2 files changed, 9 insertions(+), 9 deletions(-) |
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
# Maintainer: Alex Taber <aft dot pokemon at gmail dot com> | |
pkgname=teamviewer | |
pkgver=12.0.71510 | |
pkgrel=7 | |
pkgdesc='All-In-One Software for Remote Support and Online Meetings' | |
arch=('i686' 'x86_64') | |
url='http://www.teamviewer.com' | |
license=('custom') | |
options=('!strip') |
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
#!/usr/bin/env python | |
from http.server import BaseHTTPRequestHandler, HTTPServer | |
# HTTPRequestHandler class | |
class testHTTPServer_RequestHandler(BaseHTTPRequestHandler): | |
# GET | |
def do_GET(self): | |
# Send response status code |
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
upstream php-fpm-handler { | |
server ${NEXTCLOUD_FPM_HOST}:${NEXTCLOUD_FPM_PORT}; | |
} | |
upstream collabora-handler { | |
server ${COLLABORA_HOST}:${COLLABORA_PORT}; | |
} | |
server { | |
listen ${NGINX_PORT}; |