From 2798d1c8b03a1ab53325fcce1378e08e919a71c9 Mon Sep 17 00:00:00 2001 From: accayetano Date: Thu, 17 May 2012 07:26:09 +0000 Subject: version 2 --- (limited to 'Bundler.py') diff --git a/Bundler.py b/Bundler.py index a00ee14..9f3bb6a 100644 --- a/Bundler.py +++ b/Bundler.py @@ -1,4 +1,5 @@ from Models import * +import logging class Bundler(): @@ -9,7 +10,9 @@ class Bundler(): str(project.publish_date)+"|"+\ str(project.is_owned) + "|"+str(project.is_shared)+"|"+\ str(project.rubric_id) +"|"+project.xo_name+"|"+\ - project.project_sha + project.project_sha + "|"+str(project.total_score) + + logging.debug(project_bundle) return project_bundle @@ -18,7 +21,9 @@ class Bundler(): rubric_bundle = "Rubric|" + str(rubric.rubric_id)+"|"+rubric.title+"|"+\ rubric.author+"|"+rubric.description+"|"+\ str(rubric.is_predefined) +"|"+rubric.xo_name +"|"+\ - rubric.rubric_sha + rubric.rubric_sha+"|"+str(rubric.enable_points) + + logging.debug(rubric_bundle) return rubric_bundle @@ -28,9 +33,9 @@ class Bundler(): for category in categories: bundle = "Category|" + str(category.category_id)+"|"+category.name+"|"+\ str(category.rubric_id) +"|"+\ - category.category_sha + category.category_sha +"|"+str(category.percentage) categorylist.append(bundle) - + logging.debug(bundle) return categorylist def bundle_level(self, levels): @@ -39,8 +44,9 @@ class Bundler(): for level in levels: bundle = "Level|" + str(level.level_id) +"|"+ level.name+"|"+level.description+"|"+\ str(level.category_id)+"|"+str(level.rubric_id)+"|"+\ - level.level_sha + level.level_sha +"|"+str(level.points) levelist.append(bundle) + logging.debug(bundle) return levelist @@ -50,6 +56,7 @@ class Bundler(): score_bundle = "Score|" + str(score.score_id) + "|" + str(score.project_id) + "|" + \ str(score.rubric_id) + "|" + str(score.category_id) + "|" + str(score.level_id) + "|" + \ score.project_sha + "|" + score.rubric_sha + "|" + score.category_sha + "|" +\ - score.level_sha + "|" + str(score.count) + score.level_sha + "|" + str(score.score_count) + logging.debug(score_bundle) return score_bundle -- cgit v0.9.1