Here are some common reasons for tastypie:
* You need an API that is RESTful and uses HTTP well.
* You want to support deep relations.
* You DON'T want to have to write your own serializer to make the output
right.
* You want an API framework that has little magic, very flexible and maps
well to the problem domain.
* You want/need XML serialization that is treated equally to JSON (and
YAML is there too).
* You want to support my perceived NIH syndrome, which is less about
NIH and more about trying to help out friends/coworkers.
PR: ports/167716
Submitted by: William Grzybowski <william88 gmail.com>
as a Subversion client.
At this point, hgsubversion is usable by users reasonably familiar with
Mercurial as a VCS. It's not recommended to dive into hgsubversion as an
introduction to Mercurial, since hgsubversion "bends the rules" a little
and violates some of the typical assumptions of early Mercurial users.
PR: ports/167692
Submitted by: William Grzybowski <william88 gmail.com>
Mercurial hooks system.
Right now it includes hooks for:
* pep8 checking of python files
* pyflakes checking of python files
* checking for forgotten pdb statements in python files
* Trac integration. This includes:
- Making sure at least a ticket is mentioned in the changeset message
- Updating the Trac ticket with the changeset
PR: ports/167595
Submitted by: William Grzybowski <william88 gmail.com>
script do some weird things that makes USE_PYDISTUTILS=easy_install break
the port, mark it so for now.
Submitted by: William Grzybowski <william88 gmail.com> (maintainer)
PR: ports/167714
- No PORTREVISION bump since this does not affect default
PR: ports/166853
Submitted by: Efren Yevale <syavne@gmail.com>
Approved by: Anders Troback <freebsd@troback.com> (maintainer)
- Trim pkg-plist, use PORTDOCS= macro to enable easier updates in the future
- No PORTREVISION bump since this does not change default package
PR: ports/165820
Submitted by: scheidell@ (me)
Approved by: x11 (maintainer, timeout 60 days)
- Add a message about npm
- Bump PORTREVISION for package change
Submitted by: sunpoet (myself, via IRC)
Approved by: Jin-Sih Lin <linpct@gmail.com> (maintainer, via IRC)
XML::SAX::Base has a very simple task - to be a base class for PerlSAX drivers
and filters. It's default behaviour is to pass the input directly to the output
unchanged. It can be useful to use this module as a base class so you don't have
to, for example, implement the characters() callback.
The main advantages that it provides are easy dispatching of events the right
way (ie it takes care for you of checking that the handler has implemented that
method, or has defined an AUTOLOAD), and the guarantee that filters will pass
along events that they aren't implementing to handlers downstream that might
nevertheless be interested in them.
WWW: http://search.cpan.org/dist/XML-SAX-Base/