Skip to content

Commit

Permalink
adding to TODO (parking issues).
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrasca committed May 20, 2019
1 parent 3646cd4 commit 91018d4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions browse/searchgrammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ def p_bterm_and_bfactor(p):

def p_bfactor_not_factor(p):
'bfactor : NOT bfactor'
# TODO (making a note while I have no internet access) this does not
# seem to work well, it produces extra columns, or anyway a query which
# doesn't merge -
p[0] = search_domain.objects.difference(p[2])

def p_bfactor_expression(p):
Expand Down
5 changes: 5 additions & 0 deletions browse/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{% extends "base.html" %}
{% load static %}

<!-- TODO (making a note while I have no internet access) both left and
right areas should have their own vertical scroll bar, and there should
be a lower area, some sort of status line, for summaries or other
information.
-->
{% block content %}
<style TYPE="text/css">
<!--
Expand Down

0 comments on commit 91018d4

Please sign in to comment.