Skip to content
This repository was archived by the owner on Jan 31, 2026. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: af/djangbone
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: hackoder/djangbone
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 16 commits
  • 1 file changed
  • 3 contributors

Commits on Jan 11, 2012

  1. Custom hook to modify model data before serialization

    Inherit from CustomBackboneAPIView and define a serialize_item method.
    Return a dict with modified data
    
    Example:
    
    class MyModelApi(CustomBackboneAPIView):
        base_queryset = ...
        serialize_fields = ...
    
        def serialize_item(self, item):
            d = super(MyModelApi, self).serialize_item(item)
            d['tags'] = ...
            return dict
    hackoder committed Jan 11, 2012
    Configuration menu
    Copy the full SHA
    733528b View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2012

  1. Configuration menu
    Copy the full SHA
    15072bb View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2012

  1. Configuration menu
    Copy the full SHA
    213a60a View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2012

  1. Configuration menu
    Copy the full SHA
    fa5e03a View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2012

  1. Configuration menu
    Copy the full SHA
    4afe2af View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2012

  1. Configuration menu
    Copy the full SHA
    72d10ff View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2012

  1. Make djangbone generic, with a specific Model Api to deal with models.

    - have generic create, read, update, delete functions (so data that does
      not directly map to a model can be modified through an API). Use
      specific model class for models.
    hackoder committed Mar 1, 2012
    Configuration menu
    Copy the full SHA
    36ae158 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2012

  1. Bugfix with str/int concat.

    hackoder committed Apr 25, 2012
    Configuration menu
    Copy the full SHA
    826dcf7 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2012

  1. Bugfix...

    hackoder committed May 23, 2012
    Configuration menu
    Copy the full SHA
    7939cc3 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2012

  1. Custom logging changes.

    hackoder committed May 29, 2012
    Configuration menu
    Copy the full SHA
    640ef40 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2013

  1. Configuration menu
    Copy the full SHA
    7fa3db9 View commit details
    Browse the repository at this point in the history
  2. Introduced a bug..

    hackoder committed Feb 28, 2013
    Configuration menu
    Copy the full SHA
    e57e25c View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2014

  1. Configuration menu
    Copy the full SHA
    c909d33 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2014

  1. Fix for Django 1.7

    hackoder committed Sep 10, 2014
    Configuration menu
    Copy the full SHA
    7785985 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2016

  1. Never return empty response

    The latest version of backbone requires a valid json response in order to trigger success/error callbacks so this patch just returns an empty json object instead of an empty string.
    randlet authored Jun 22, 2016
    Configuration menu
    Copy the full SHA
    55b1b84 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2016

  1. Merge pull request #1 from randlet/return-json

    Never return empty response
    hackoder authored Jun 23, 2016
    Configuration menu
    Copy the full SHA
    0e7c59f View commit details
    Browse the repository at this point in the history
Loading