1. 250d84d Merge the two databases and the two Django projects. Note that the TKO migrations are still present, as is the migration code for TKO in database/migrate.py. These pieces of code are preserved because they are required by this change to perform the merge. A separate change will be submitted in the future to remove those references. by showard · 15 years ago[Renamed (99%) from new_tko/tko/rpc_interface_unittest.py]
  2. 8b0ea22 Overhaul how we deal with related data in TKO -- test labels, test attributes, machine labels, and iteration results. by showard · 15 years ago
  3. eab66ce Rename the tables in the databases, by prefixing the app name. This is by showard · 15 years ago
  4. d2b0c88 Add almost everything necessary for UI support for including test attributes in table view. by showard · 15 years ago
  5. 8bfb5cb Add support for joining specific test attributes to the TKO get_test_view() method and friends (including grouping friends). This required a number of cleanups to the code in general. The two big changes were: by showard · 15 years ago
  6. c1c1caf Added afe_job_id column to the jobs table in TKO. Changed link in AFE by showard · 15 years ago
  7. c478040 Add RPCs for requesting iteration results from TKO and supporting model code. by showard · 15 years ago
  8. 6631273 Make a bunch of stuff executable by mbligh · 15 years ago
  9. a5288b4 Upgrade from Django 0.96 to Django 1.0.2. by showard · 15 years ago
  10. 06b82fc Add unit tests for the TKO RPC interface by showard · 15 years ago
  11. 68693f7 populate_relationships() wasn't working for IterationAttributes and IterationResults in TKO, because they don't have primary key columns. the "right" fix would be to simply add primary key ID columns. unfortunately, that can take forever since it's a sort of intensive operation and iteration_result is a big table. so this change reworks how populate_relationships() works. it now handles many-to-one relationships separately, using a single query over the related table that doesn't depend on a primary key. also extended the unit test to cover this case, which required some annoying changes to account for this shortcoming of these tables. by showard · 15 years ago
  12. f8b1904 Add the ability for users to add test attributes. Non-user-created attributes (added by the parser) are still immutable. by showard · 15 years ago