Exemplo n.º 1
0
def show_results():
    hashkey = request.args.get('hashkey')
    pm   = PersistenceManager(myapp.db_connector)
    lists = pm.get_lists_for_hashkey(hashkey)
    results = []
    ret     = {}
    ret[ 'pretty_print'] = lists[0].pretty_print( manage_list=0, show_results=0)
    ret['hashkey'] = lists[0].hashkey
    for list in lists:
        res = pm.get_round_results_for_list(list.id)
        for r in res:
            results.append(r)
    ret[ "results"] = results
    return render_template("show_results.html", data=ret)
Exemplo n.º 2
0
from sqlalchemy import BigInteger
import myapp
from persistence import PersistenceManager, ArchtypeList, Faction

__author__ = 'lhayhurst'

if __name__ == "__main__":

    archtypes_hash = {}

    pm = PersistenceManager( myapp.db_connector )
    hashkeys = pm.get_all_hashkeys()
    for hashkey in hashkeys:
        lists = pm.get_lists_for_hashkey(hashkey[0])
        for list in lists:
            if not archtypes_hash.has_key( hashkey[0]):
                a = ArchtypeList()
                if list.faction is not None:
                    a.hashkey = hashkey[0]
                    a.faction = list.faction
                    if list.points is not None:
                        a.points = list.points
                    pm.db_connector.get_session().add( a )
                    archtypes_hash[hashkey[0]] = a
    pm.db_connector.get_session().commit()


#143,rebel, 100
Exemplo n.º 3
0
from sqlalchemy import BigInteger
import myapp
from persistence import PersistenceManager, ArchtypeList, Faction

__author__ = 'lhayhurst'

if __name__ == "__main__":

    archtypes_hash = {}

    pm = PersistenceManager(myapp.db_connector)
    hashkeys = pm.get_all_hashkeys()
    for hashkey in hashkeys:
        lists = pm.get_lists_for_hashkey(hashkey[0])
        for list in lists:
            if not archtypes_hash.has_key(hashkey[0]):
                a = ArchtypeList()
                if list.faction is not None:
                    a.hashkey = hashkey[0]
                    a.faction = list.faction
                    if list.points is not None:
                        a.points = list.points
                    pm.db_connector.get_session().add(a)
                    archtypes_hash[hashkey[0]] = a
    pm.db_connector.get_session().commit()

#143,rebel, 100