diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kppp/Rules/Japan | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kppp/Rules/Japan')
-rw-r--r-- | kppp/Rules/Japan/Makefile.am | 5 | ||||
-rw-r--r-- | kppp/Rules/Japan/NTT_Local.rst | 58 |
2 files changed, 63 insertions, 0 deletions
diff --git a/kppp/Rules/Japan/Makefile.am b/kppp/Rules/Japan/Makefile.am new file mode 100644 index 00000000..486f523f --- /dev/null +++ b/kppp/Rules/Japan/Makefile.am @@ -0,0 +1,5 @@ +pkg_DATA = NTT_Local.rst + +pkgdir = $(kde_datadir)/kppp/Rules/Japan + +EXTRA_DIST = $(pkg_DATA) diff --git a/kppp/Rules/Japan/NTT_Local.rst b/kppp/Rules/Japan/NTT_Local.rst new file mode 100644 index 00000000..c9ded14e --- /dev/null +++ b/kppp/Rules/Japan/NTT_Local.rst @@ -0,0 +1,58 @@ +################################################################ +# This is the rule set for Japan, local NTT charge +# +# Jacek Cwielong <cwielong@annie.co.jp> +################################################################ + + +################################################################ +# +# NAME OF THE RULESET. This is NEEDED for accounting purposes. +# +################################################################ +name=NTT-Local + +################################################################ +# currency settings +################################################################ + +# defines JPY (Japanese Yen) to be used as currency +currency_symbol=JPY + +# Define the position of the currency symbol. +currency_position=right + +# Define the number of significat digits. +# (not absolutely needed, default is "2" +currency_digits=2 + +################################################################ +# connection settings +################################################################ + +# NOTE: rules are applied from top to bottom - the +# LAST matching rule is the one used for the +# cost computations. + +# This is charged whenever you connect. If you don't have to +# pay per-connection, use "0" here or comment it out. +per_connection=0.0 + +# minimum costs per connection. If the costs of a phone +# call are less than this value, this value is used instead +minimum_costs=0.0 + +# This is the default rule which is used when no other rule +# applies. The first component "10" is the price of one +# "unit", while "180" is the duration in seconds. +# Therefore the following rule means: "Every 180 seconds +# 10 YPJ are added to the bill" +default=(10,180) + +# applies 8am until 11pm: every 180 seconds 10 JPY +# are added to the bill +on () between (8:00..22:59) use(10,180) + +# applies 23pm until 8am: every 240 seconds 10 JPY +# are added to the bill +on () between (23:00..7:59) use(10,240) |