0
I Use This!
Inactive

Commits : Listings

Analyzed 22 days ago. based on code collected 23 days ago.
Jan 30, 2024 — Jan 30, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Added fix_init_kwarg method to JSONField and connected it to the pre_init signal during contribute_to_class - this effectively mimics what django does for RelatedObject fields in Model.__init__ by allowing a python value to be passed in to the constructor (e.g. JSONValue(value={}) instead of JSONValue(value_json='{}')). This resolves issue 68. More... about 14 years ago
Split shipherd NodeNavigationInline into inlines for hosted/targeting inlines. Added NodeAdmin reregistration to bring the new inlines into play. Added navigation_host filter. More... about 14 years ago
Minor correction to Navigation.is_active() More... about 14 years ago
updated grappelli_tabular_attribute.html to match changes in grappelli 2.3 More... about 14 years ago
Shifted NavigationManager caching to use node instances rather than node pks. Improved (i.e. added) a distinction between having a cache for a node and having a Navigation instance somewhere in the cache. Refactored Navigation.is_active for better clarity. Added cache clearing for previously-uncached, directly-hosted navigation. Adjusted recursenavigation to accept either a node or a queryset/iterable. Added targeting_navigation filter. More... about 14 years ago
Added shortcut is_cached method to Navigation instances and Navigation.objects; updated other methods to use these shortcuts. Added cache clearing for new and changed Navigation instances that have not been cached but are within the range of a hosted navigation instance. More... about 14 years ago
Corrected shipherd Navigation cache clearing and made grappelli attribute inline template compatible with grappelli r1399. Tweaked recursenavigation template tag behavior to set {{ navigation }} in the context instead of node and corrected its documentation. Added has_navigation filter. More... about 14 years ago
Merge branch 'navigation' More... about 14 years ago
Renamed navigation to shipherd. More... about 14 years ago
Improved NewsletterArticleAdmin. Corrected embed templatetag errors related to ConstantEmbedNode.object_pk and the parse_content_type helper function (formerly get_content_type). More... about 14 years ago
Changed Location & Calendar to check for constants in the settings file for which model to use, and made given models the default ones (only to be initialised if no other models are defined.) More... about 14 years ago
Initial model classes written. Still a few additions needed. More... about 14 years ago
Initialised empty app julian. More... about 14 years ago
Modified the feed behavior for blogs and newsletters to always use the full content of entries and articles. I am of the opinion that people using feed readers should not have to click through to the website to read the full text of either.
jspiros
as Joseph Spiros
More... about 14 years ago
Merge branch 'master' of git://github.com/melinath/philo
jspiros
as Joseph Spiros
More... about 14 years ago
Added markdown-formatted README, and added a note to the readme re: the IRC channel. Removed the replace_sender_response function as it was a terrible abomination that was bound to encourage hackish solutions. More... about 14 years ago
Small tweaks to TreeModel.get_path to take advantage of updates to django-mptt. Updated README accordingly. More... about 14 years ago
Added a custom QuerySet subclass to handle cache clearing for Navigation mass updates and deletions. More... about 14 years ago
Added is_active method to Navigation class. Replaced the get_navigation and is_active filters with a recursenavigation template tag. More... about 14 years ago
Switched nav caching to cache the entire set of nodes for the navigation, not just the roots. Tweaked NavigationManager.clear_cache method to accout for this. Set Navigation model save and delete methods to call the cache clearer if appropriate. Tweaked get_navigation filter to take advantage of the changes. More... about 14 years ago
Merge branch 'master' into navigation More... about 14 years ago
Improved NodeAdmin list_display options. Added use of default validators to JSONField and JSONFormField. More... about 14 years ago
Moved NavigationManager cache handling into custom methods for better readability and compartmentalization. Added NavigationManager to Navigation model. Tweaked navigation generation filter to work based on a Node instead of roots. More... about 14 years ago
Tweaked admin and models. Added filters to manage navigation display. More... about 14 years ago
Moved all navigation-related code to contrib/navigation. Refactored navigation to be more independant of the Node tree structure and allow for absolute urls, links to nodes, links to node subpaths, and links to reversed node subpaths. More... about 14 years ago
Merge branch 'master' into navigation More... about 14 years ago
Simplified waldo's AccountMultiView to rely just on an AccountForm rather than a complicated mix of a UserForm and an AccountForm generated based on a number of attributes. More... about 14 years ago
Minor correction to TreeModel.get_path to allow for subclasses that use an alternate level attribute. Minor correction to TreeManager.get_with_path to only return root as the deepest node if there is actually no deepest_found node. Added MultiView.reverse() shortcut method to handle the common pattern of getting the absolute url for the subpath of a multiview. Adjusted waldo MultiViews to use their reverse() method. Added make_confirmation_link() method to LoginMultiView to provide a standard, reusable way to handle this task. Brought waldo's multiview get_context method use in line with penfield by removing the optional extra dictionary passed in. More... about 14 years ago
Minor correction to embed template tag: updating the context adds an additional context layer, which means the explicitly pushed layer was never popped. More... about 14 years ago
Minor changes to penfield to return feed urls only when feeds are actually enabled and to allow BlogEntry.objects.latest(). Corrected TreeManager.get_with_path to return the root node (if defined) as the deepest node if nothing else is found along the path. Removed embed tag error raising for an expected behavior. More... about 14 years ago