summaryrefslogtreecommitdiff
path: root/sister.py
diff options
context:
space:
mode:
authorAleš Smodiš <aless@guru.si>2015-10-02 11:22:06 +0200
committerAleš Smodiš <aless@guru.si>2015-10-02 11:22:06 +0200
commit0c168d0027f3350344d0fcdf16c554dcc8f3c92b (patch)
treeb263d19109400d33c31e3e0c5c5a256d03a4cae4 /sister.py
parentf72d4a175d44283e1d2d35bccff706093600c1c2 (diff)
Remove deprecated files.
Diffstat (limited to 'sister.py')
-rw-r--r--sister.py38
1 files changed, 0 insertions, 38 deletions
diff --git a/sister.py b/sister.py
deleted file mode 100644
index 20d8f1d..0000000
--- a/sister.py
+++ /dev/null
@@ -1,38 +0,0 @@
-# coding=utf-8
-# najprej opis
-description = """\
-<h1>Sister</h1>
-<p>Predikat <code>sister(X, Y)</code> velja natanko takrat, kadar je <code>X</code> sestra od <code>Y</code>.
-Primer klica:</p>
-<p><code>
-?- sister(X, patricia).<br>
-&nbsp;&nbsp;X = vanessa.
-</code></p>"""
-
-# in zdaj hinti
-hint = {} # to je komentar
-hint['must_have_common_parent'] = """
-<code>X</code> in <code>Y</code> morata imeti (vsaj enega) skupnega starša.<br>
-<svg>
-</svg>
-"""
-
-hint['x_must_be_female'] = "<code>X</code> mora biti ženskega spola."
-hint['x_cant_be_own_sister'] = "<code>X</code> ne more biti sestra sama sebi."
-hint['y_not_necessarily_woman'] = "<code>Y</code> ni nujno ženskega spola / relacija ni simetrična."
-
-# a drop-down hint must supply the arguments: start (int), end (int), choices (array of string)
-hint['drop_down'] = {
- 'type': 'dropdown'
-}
-# a pop-up hint must supply the arguments: start (int), end (int), args (object of key-value args for the template, optional)
-hint['popup_unknown'] = {
- 'type': 'popup',
- 'message': 'nekaj si zabluzil v vrstici [%=row%]'
-}
-# a static hint can supply an optional argument: args (object of key-value args for the template)
-# a static hint can also be defined as a string instead of an object
-hint['sample_static'] = {
- 'type': 'static',
- 'message': 'A sample static hint'
-}