Skip to content

Commit 554ba29

Browse files
author
Matthew Wall
committed
eliminate svn:keywords Id
1 parent 225431c commit 554ba29

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+27
-90
lines changed

README

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ PWSweather.com, or CWOP.
44

55
weewx is licensed under the GNU Public License v3.
66

7-
weewx documentation is in docs/readme.htm or on http://weewx.com/docs.html
8-
Wiki is available on Github: https://github.com/weewx/weewx/wiki
9-
Community support at: https://groups.google.com/forum/#!forum/weewx-user
7+
Documentation: docs/readme.htm or http://weewx.com/docs.html
8+
Wiki: https://github.com/weewx/weewx/wiki
9+
Community support: https://groups.google.com/group/weewx-user

bin/weewx/test/simgen.conf

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@
1111
# See the file LICENSE.txt for your full rights. #
1212
# #
1313
###############################################################################
14-
#
15-
# $Id$
16-
#
17-
###############################################################################
1814

1915
#
2016
# This section is for general configuration information

bin/weewx/test/test_skins/StandardTest/bymonth.txt.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#errorCatcher Echo
2-
## $Id$
32
#set $YM="%Y %m"
43
#set $D=" %d"
54
#set $M=" %b"

bin/weewx/test/test_skins/StandardTest/byyear.txt.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#errorCatcher Echo
2-
## $Id$
32
#set $YM="%Y %m"
43
#set $D=" %d"
54
#set $M=" %b"

bin/weewx/test/test_skins/StandardTest/index.html.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#errorCatcher Echo
2-
## $Id$
32
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
43
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
54
<html xmlns="http://www.w3.org/1999/xhtml">

bin/weewx/test/test_skins/StandardTest/skin.conf

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@
1111
# See the file LICENSE.txt for your full rights. #
1212
# #
1313
###############################################################################
14-
#
15-
# $Id$
16-
#
17-
###############################################################################
1814

1915
[Extras]
2016

bin/weewx/test/testgen.conf

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@
1111
# See the file LICENSE.txt for your full rights. #
1212
# #
1313
###############################################################################
14-
#
15-
# $Id$
16-
#
17-
###############################################################################
1814

1915
#
2016
# This section is for general configuration information

bin/weewx/wxservices.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,11 @@ def calc_apptemp(self, data, data_type):
223223
else:
224224
data['apptemp'] = None
225225

226-
# def calc_beaufort(self, data, data_type):
227-
# if 'windSpeed' in data:
228-
# vt = (data['windSpeed'], "mile_per_hour", "group_speed")
229-
# ws_kts = weewx.units.convert(vt, "knot")[0]
230-
# data['beaufort'] = weewx.wxformulas.beaufort(ws_kts)
226+
def calc_beaufort(self, data, data_type):
227+
if 'windSpeed' in data:
228+
vt = (data['windSpeed'], "mile_per_hour", "group_speed")
229+
ws_kts = weewx.units.convert(vt, "knot")[0]
230+
data['beaufort'] = weewx.wxformulas.beaufort(ws_kts)
231231

232232
def calc_ET(self, data, data_type):
233233
"""Get maximum and minimum temperatures and average radiation and
@@ -258,7 +258,8 @@ def calc_ET(self, data, data_type):
258258
else:
259259
wind_avg = weewx.wxformulas.kph_to_mph(wind_avg)
260260
data['ET'] = weewx.wxformulas.evapotranspiration_US(
261-
T_max, T_min, rad_avg, wind_avg, self.wind_height, self.latitude,
261+
T_max, T_min, rad_avg, wind_avg,
262+
self.wind_height, self.latitude,
262263
data['dateTime'])
263264
except weedb.DatabaseError:
264265
pass

docs/copyright.htm

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3-
<!-- $Id$ -->
43
<head>
54
<meta content="en-us" http-equiv="Content-Language" />
65
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

docs/css/weewx_docs.css

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
/*
2-
* Styles for the weewx documentation
1+
/* Styles for the weewx documentatio
32
*
4-
* $Id$
3+
* Copyright (c) 2015 Tom Keffer <[email protected]>
4+
*
5+
* See the file LICENSE.txt for your rights.
56
*/
67

78
html, body{

docs/customizing.htm

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3-
<!-- $Id$ -->
43
<head>
54
<meta content="en-us" http-equiv="Content-Language" />
65
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

docs/debian.htm

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3-
<!-- $Id$ -->
43
<head>
54
<meta content="en-us" http-equiv="Content-Language" />
65
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

docs/js/weewx.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
/*
2-
* Copyright (c) 2014 Tom Keffer <[email protected]>
3-
*
4-
* See the file LICENSE.txt for your full rights.
1+
/* Javascript for the weewx documentation
52
*
6-
* $Id$
3+
* Copyright (c) 2015 Tom Keffer <[email protected]>
4+
*
5+
* See the file LICENSE.txt for your rights.
76
*/
87

98
function wee_gen_id(text, element) {

docs/readme.htm

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3-
4-
<!-- $Id$ -->
5-
63
<head>
74
<meta content="en-us" http-equiv="Content-Language" />
85
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

docs/redhat.htm

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3-
<!-- $Id$ -->
43
<head>
54
<meta content="en-us" http-equiv="Content-Language" />
65
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

docs/setup.htm

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3-
<!-- $Id$ -->
43
<head>
54
<meta content="en-us" http-equiv="Content-Language" />
65
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

docs/suse.htm

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3-
<!-- $Id$ -->
43
<head>
54
<meta content="en-us" http-equiv="Content-Language" />
65
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

docs/upgrading.htm

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3-
<!-- $Id$ -->
43
<head>
54
<meta http-equiv="Content-Language" content="en-us" />
65
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

docs/usersguide.htm

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3-
<!-- $Id$ -->
43
<head>
54
<meta content="en-us" http-equiv="Content-Language" />
65
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

extensions/basic/skins/basic/basic.css

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* css for the basic skin */
22
/* Copyright 2014 Matthew Wall */
3-
/* $Id$ */
43

54
body {
65
font-family: Verdana, Arial, Helvetica, sans-serif;

extensions/basic/skins/basic/current.inc

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
## basic for weewx - Copyright 2013 Matthew Wall
2-
## $Id$
32

43
<!-- current readings in tabular form -->
54

extensions/basic/skins/basic/hilo.inc

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
## basic for weewx - Copyright 2013 Matthew Wall
2-
## $Id$
32

43
<!-- hi/lo readings in tabular form -->
54

extensions/basic/skins/basic/index.html.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
## basic skin for weewx - Copyright 2014 Matthew Wall
2-
## $Id$
32
#errorCatcher Echo
43
#encoding UTF-8
54
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

extensions/basic/skins/basic/skin.conf

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# configuration file for the basic skin
2-
# $Id$
32
# The basic skin was created by Matthew Wall.
43
#
54
# This skin can be copied, modified, and distributed as long as this notice

extensions/pmon/skins/pmon/index.html.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
## pmon for weewx - Copyright 2013-2014 Matthew Wall
2-
## $Id$
32
#errorCatcher Echo
43
#encoding UTF-8
54
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

extensions/pmon/skins/pmon/skin.conf

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# configuration file for the pmon skin
2-
# $Id$
32
# Copyright 2014 Matthew Wall
43

54
[Extras]

extensions/xstats/skins/xstats/skin.conf

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# configuration file for the xstats skin
2-
# $Id$
32
# Copyright 2014 Matthew Wall
43

54
[Units]

extensions/xstats/skins/xstats/xstats.html.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
## xstats for weewx - Copyright 2014 Matthew Wall
2-
## $Id$
32
#errorCatcher Echo
43
#encoding UTF-8
54
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

makefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# -*- makefile -*-
2-
# $Id$
3-
# Copyright 2013 Matthew Wall
4-
#
52
# this makefile controls the build and packaging of weewx
3+
# Copyright 2013 Matthew Wall
64

75
# if you do not want to sign the packages, set SIGN to 0
86
SIGN=1

pkg/debian/config

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh -e
2-
# $Id$
32
# prompt for configuration settings that are required and have no default
43

54
# load the debconf functions

pkg/debian/postinst

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
# $Id$
32
# postinst script for weewx debian package
43
# Copyright 2013 Matthew Wall
54
#

pkg/debian/postrm

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh -e
2-
# $Id$
32
# postrm script for weewx debian package
43
# Copyright 2013 Matthew Wall
54
#

pkg/debian/preinst

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
# $Id: postinst 2738 2014-11-29 04:17:12Z mwall $
32
# preinst script for weewx debian package
43
# Copyright 2014 Matthew Wall
54

pkg/debian/prerm

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
# $Id$
32
# prerm script for weewx debian package
43
# Copyright 2013 Matthew Wall
54
#

pkg/debian/rules

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/make -f
22
# -*- makefile -*-
3-
# $Id$
43
# debian makefile for weewx
54
# Copyright 2013 Matthew Wall
65

pkg/mkchangelog.pl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/perl
2-
# $Id$
32
# Copyright Matthew Wall
43
#
54
# Convert the changelog to various formats, or create a changelog stub suitable

pkg/weewx.spec.in

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# spec for building a weewx rpm for redhat or suse systems
2-
# $Id$
32
# License: GPLv3
43
# Author: (c) 2013 Matthew Wall
54

skins/Ftp/skin.conf

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
###############################################################################
2-
# $Id$
32
# Copyright (c) 2010 Tom Keffer <[email protected]> #
43
# #
54
# FTP CONFIGURATION FILE #

skins/Rsync/skin.conf

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
###############################################################################
2-
# $Id$
32
# Copyright (c) 2012 Will Page <[email protected]> #
43
# With credit to Tom Keffer <[email protected]> #
54
# #

skins/Standard/NOAA/NOAA-YYYY-MM.txt.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#errorCatcher Echo
2-
## $Id$
32
#set $YM="%Y %m"
43
#set $D=" %d"
54
#set $M=" %b"

skins/Standard/NOAA/NOAA-YYYY.txt.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#errorCatcher Echo
2-
## $Id$
32
#set $YM="%Y %m"
43
#set $D=" %d"
54
#set $M=" %b"

skins/Standard/RSS/weewx_rss.xml.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0"?>
2-
## $Id$
32
<rss version="2.0"
43
xmlns:content="http://purl.org/rss/1.0/modules/content/"
54
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >

skins/Standard/index.html.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#errorCatcher Echo
2-
## $Id$
32
##
43
## Specifying an encoding of UTF-8 is usually safe, but if your text is
54
## actually in Latin-1, then you should replace the string "UTF-8" with "latin-1"

skins/Standard/mobile.css

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* weewx mobile CSS settings
3-
* $Id$
43
*/
54

65
/* Global */

skins/Standard/mobile.html.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
## $Id$
21
#encoding UTF-8
32
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
43
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

skins/Standard/month.html.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#errorCatcher Echo
2-
## $Id$
32
#encoding UTF-8
43
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
54
<html xmlns="http://www.w3.org/1999/xhtml">

skins/Standard/skin.conf

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
###############################################################################
2-
# $Id$
3-
# Copyright (c) 2010 Tom Keffer <[email protected]> #
42
# STANDARD SKIN CONFIGURATION FILE #
3+
# Copyright (c) 2010 Tom Keffer <[email protected]> #
54
###############################################################################
65

76
[Extras]

skins/Standard/week.html.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#errorCatcher Echo
2-
## $Id$
32
#encoding UTF-8
43
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
54
<html xmlns="http://www.w3.org/1999/xhtml">

skins/Standard/weewx.css

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
/*
2-
* CSS for the weewx Standard skin
3-
* $Id$
1+
/* CSS for the weewx Standard skin
2+
*
3+
* Copyright (c) 2015 Tom Keffer <[email protected]>
4+
*
5+
* See the file LICENSE.txt for your rights.
46
*/
57

68
/* Global */

skins/Standard/year.html.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#errorCatcher Echo
2-
## $Id$
32
#encoding UTF-8
43
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
54
<html xmlns="http://www.w3.org/1999/xhtml">

util/init.d/weewx.bsd

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
# $Id$
32
# Start script for FreeBSD, contributed by user Fabian Abplanalp
43
# Adjust app and cfg locations as appropriate, then put this script
54
# in /usr/local/etc/rc.d

util/init.d/weewx.debian

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#! /bin/sh
2-
# $Id$
32
# Author: Tom Keffer <[email protected]>
43
# Startup script for Debian derivatives
54
#

util/init.d/weewx.lsb

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
# $Id$
32
# Author: Tom Keffer <[email protected]>
43
# LSB system startup script for weewx
54

0 commit comments

Comments
 (0)