0
I Use This!
Inactive

Commits : Listings

Analyzed 8 days ago. based on code collected 8 days ago.
Mar 31, 2025 — Mar 31, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Added filters, queries, and properties for identifying sibling nodes, as well as the supporting is_root_node property. More... about 14 years ago
Added a FIXME note to track a future improvement suggestion: a helper method to allow the various *_of_node methods to accept a wider variety of parameter formats (lists, sets, query objects, etc.). More... about 14 years ago
Removed initializers for reduce() built-in, since they are not needed (and I have the unit tests now to verify that). More... about 14 years ago
Updated docs to reflect current code. More... about 14 years ago
Renamed and_self/or_self parameters to include_self, so that we have a common nomenclature across all APIs that reflects semantic meaning instead of implementation details. More... about 14 years ago
Removed excess frame pointer indirection. It seems that some assertion errors require going back three frames, while four frames are required for others. Since it's better to place the debugger too low than too high, I've reset the default to three frames until a smarter solution can be developed. More... about 14 years ago
Renamed leaf_nodes to leaf-nodes, since it's used as a key and we don't have to worry about hyphen vs. underscore. More... about 14 years ago
Provide more logical ordering of class methods. More... about 14 years ago
Renamed filter/query_root_node to filter/query_root_nodes for TreeClassManager, since its semantics is slightly different from the filter/query_root_node of the TreeInstanceManager (and plurality matters). More... about 14 years ago
Re-ordered unit tests. More... about 14 years ago
Move back an additional frame to get us out of the unit testing framework and into the unit test. More... about 14 years ago
Added filter_leaf_nodes, query_leaf_nodes, filter_leaf_nodes_by_tree_id, query_leaf_nodes_by_tree_id, filter_leaf_nodes_by_node, and query_leaf_nodes_by_node APIs. More... about 14 years ago
Added filter_descendants_of_node/query_descendants_of_node APIs, and switched filter_descendants/query_descendants to use these new APIs. More... about 14 years ago
Switched to more logical ordering of unit tests; removed unnecessary line-continuation characters. More... about 14 years ago
Added filter_children_of_node and query_children_of_node APIs, associated unit tests, and modified existing filter_children and query_children instance APIs to use the new class APIs. More... about 14 years ago
Added missing comma. More... about 14 years ago
Added filter_ancestors_of_node and query_ancestors_of_node APIs, with unit tests, and converted the TreeInstanceManager APIs filter_ancestors and query_ancestors to use them. More... about 14 years ago
Added debugcheck as a make target--a version of the unit test command which stops execution and enters an interactive debugging session (using ipdb) in instances of a failed unit test assertion. More... about 14 years ago
Added filter_root_node, query_root_node APIs, and the root_node property to TreeInstanceManager, and unit tests to check their behavior. Removed the plural ā€˜s’ from filter_root_nodes and query_root_nodes in TreeClassManager to have a consistent API. More... about 14 years ago
Shortened method implementation by adding an early return option. More... about 14 years ago
Removed retrieval of options to save a line, when possible. More... about 14 years ago
Added filter_parent_of_node/query_parent_of_node APIs and associated unit tests. Converted filter_parent to use these APIs instead. More... about 14 years ago
Added pk, parent_id, parent, tree_id, left, right, and depth instance accessors and associated unit tests. More... about 14 years ago
removed dated reference to mp vs tree. More... about 14 years ago
Added unit tests for field accessors. More... about 14 years ago
Factored out session code into its own method for readability. More... about 14 years ago
Fixed potential bug due to repetition of values in an in_ expression (not sure how SQL would handle that). More... about 14 years ago
Removed inaccurate documentation leftover from SQLAMP. More... about 14 years ago
Line-wrap. More... about 14 years ago
Added unit test for get_descendant_count(). More... about 14 years ago