debian/0002755000000000000000000000000012123657316007176 5ustar debian/source/0002755000000000000000000000000012123657316010476 5ustar debian/source/format0000644000000000000000000000001412121420746011673 0ustar 3.0 (quilt) debian/README.source0000644000000000000000000000025612121443415011345 0ustar All JavaScript libraries, that are already in Debian have been removed, jquery.ba-throttle-debounce.js has been added, and trac-theme.css moved to directory above jquery-ui. debian/control0000644000000000000000000000352112121443415010567 0ustar Source: trac-codecomments Section: web Priority: optional Build-Depends: python-all (>= 2.6.6-3~), python-setuptools, debhelper (>= 7.0.50~), yui-compressor Maintainer: Python Applications Packaging Team Uploaders: W. Martin Borgert Standards-Version: 3.9.3.1 Vcs-Svn: svn://svn.debian.org/svn/python-apps/packages/trac-codecomments/trunk/ Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/trac-codecomments/trunk/ Homepage: https://github.com/Automattic/trac-code-comments-plugin Package: trac-codecomments Architecture: all Depends: ${python:Depends}, ${misc:Depends}, trac, libjs-backbone, libjs-jquery-ui, libjs-json, libjs-underscore Description: code comments and review plugin for Trac This plugin allows you to leave comments on top of files, changesets, and attachments. Once you've added all of your comments, you can send them to tickets. These include links to these comments and their description. * Comments on files – you can comment on every file in the repository. * Inline comments on files – comment on a specific line. The comments appears in context, below the line in question. * Comments on changesets – useful when doing code reviews of incoming commits. * Comments on attachment pages – useful when reviewing patches. * Wiki Markup – you can use the standard Trac wiki markup inside your comments. * Instant preview – to make sure you get the formatting right. * Sending comments to tickets – you can select arbitrary number of comments and create a new ticket out of them. The text of the ticket defaults to links to the comments and their text, but you can edit these before saving the ticket. * Comments/ticket cross-reference – to remember which comments are already in tickets and which are not. debian/changelog0000644000000000000000000000026112123656404011042 0ustar trac-codecomments (1.1.1+dfsg-1) unstable; urgency=low * First Debian package (Closes: #702066). -- W. Martin Borgert Sat, 02 Mar 2013 16:32:20 +0000 debian/compat0000644000000000000000000000000212121420746010363 0ustar 7 debian/links0000644000000000000000000000060712121443415010231 0ustar /usr/share/javascript/backbone/backbone.js /usr/share/pyshared/code_comments/htdocs/backbone.js /usr/share/javascript/jquery-ui/jquery-ui.js /usr/share/pyshared/code_comments/htdocs/jquery-ui.js /usr/share/javascript/json/json2.js /usr/share/pyshared/code_comments/htdocs/json2.js /usr/share/javascript/underscore/underscore.js /usr/share/pyshared/code_comments/htdocs/code-comments-list.js debian/patches/0002755000000000000000000000000012123657316010625 5ustar debian/patches/series0000644000000000000000000000006312123657135012036 0ustar 10_ignore_unknown_columns.patch 20_fix_paths.patch debian/patches/10_ignore_unknown_columns.patch0000644000000000000000000000106112123656250016740 0ustar Author: Description: ignore unknown columns --- a/code_comments/comments.py 2013-03-24 20:55:34.145479940 +0100 +++ b/code_comments/comments.py 2013-03-24 20:57:21.741486233 +0100 @@ -78,6 +78,9 @@ conditions = [] values = [] for name in args: + # ignore unknown columns + if not name in Comment.columns: + continue if not name.endswith('__in') and not name.endswith('__prefix'): values.append(args[name]) if name.endswith('__gt'): debian/patches/20_fix_paths.patch0000644000000000000000000000156512123657301014133 0ustar Author: Description: fix paths for Debian package --- a/code_comments/web.py 2013-03-24 21:10:24.941532037 +0100 +++ b/code_comments/web.py 2013-03-24 21:12:16.417538556 +0100 @@ -90,8 +90,8 @@ add_script(req, 'code-comments/underscore-min.js') add_script(req, 'code-comments/backbone-min.js') # jQuery UI includes: UI Core, Interactions, Button & Dialog Widgets, Core Effects, custom theme - add_script(req, 'code-comments/jquery-ui/jquery-ui.js') - add_stylesheet(req, 'code-comments/jquery-ui/trac-theme.css') + add_script(req, 'code-comments/jquery-ui.js') + add_stylesheet(req, 'code-comments/trac-theme.css') add_script(req, 'code-comments/jquery.ba-throttle-debounce.min.js') add_script(req, 'code-comments/code-comments.js') add_script_data(req, {'CodeComments': js_data}) debian/rules0000755000000000000000000000011412121443415010237 0ustar #!/usr/bin/make -f %: dh $@ --with python2 --buildsystem=python_distutils debian/copyright0000644000000000000000000000557312121443415011130 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: https://github.com/Automattic/trac-code-comments-plugin Files: * Homepage: https://github.com/Automattic/trac-code-comments-plugin Copyright: 2011-2012, Automattic Inc., Nikolay Bachiyski , Thorsten Ott Files: code_comments/htdocs/jquery-ui/trac-theme.css Homepage: http://jqueryui.com/ Copyright: 2008 Paul Bakaus (ui.jquery.com) Brandon Aaron David Bolter Rich Caloggero Chi Cheng (cloudream@gmail.com) Colin Clark (http://colin.atrc.utoronto.ca/) Michelle D'Souza Aaron Eisenberger (aaronchi@gmail.com) Ariel Flesler Bohdan Ganicky Scott González Marc Grabanski (m@marcgrabanski.com) Klaus Hartl (stilbuero.de) Scott Jehl Cody Lindley Eduardo Lundgren (eduardolundgren@gmail.com) Todd Parker John Resig Patty Toland Ca-Phun Ung (yelotofu.com) Keith Wood (kbwood@virginbroadband.com.au) Maggie Costello Wachs Richard D. Worth (rdworth.org) Jörn Zaefferer (bassistance.de) License: GPL-2 or MIT Files: code_comments/htdocs/jquery.ba-throttle-debounce.js Copyright: 2010 "Cowboy" Ben Alman Source: http://benalman.com/projects/jquery-throttle-debounce-plugin/ License: GPL-2 or MIT, according to http://benalman.com/about/license/ Files: debian/* Copyright: (c) 2013, W. Martin Borgert License: GPL-2 or MIT License: GPL-2 On Debian systems the full text of the GNU General Public License can be found in the `/usr/share/common-licenses/GPL-2' file. License: MIT Copyright (c) 2009 Paul Bakaus, http://ui.jquery.com/ . This software consists of voluntary contributions made by many individuals (AUTHORS.txt, http://ui.jquery.com/about) For exact contribution history, see the revision history and logs, available at http://jquery-ui.googlecode.com/svn/ . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.