debian/0000755000000000000000000000000012157440557007200 5ustar debian/coquelicot.logrotate0000644000000000000000000000025212157440557013270 0ustar /var/log/coquelicot/*.log { daily missingok rotate 7 compress delaycompress su coquelicot coquelicot lastaction invoke-rc.d coquelicot reopen-logs endscript } debian/coquelicot.examples0000644000000000000000000000023012157440557013102 0ustar debian/coquelicot.apache2 debian/coquelicot.nginx debian/coquelicot.pound conf/settings-default.yml conf/settings-imap.yml conf/settings-simplepass.yml debian/coquelicot.manpages0000644000000000000000000000002412157440557013060 0ustar debian/coquelicot.8 debian/coquelicot.install0000644000000000000000000000016212157440557012736 0ustar debian/settings.yml etc/coquelicot po usr/share/coquelicot public usr/share/coquelicot views usr/share/coquelicot debian/coquelicot.8.ron0000644000000000000000000000370012157440557012235 0ustar coquelicot(8) -- "one-click" file sharing web application ## SYNOPSIS `coquelicot` [-c ] start [-n] `coquelicot` [-c ] stop `coquelicot` [-c ] gc `coquelicot` [-c ] migrate-jyraphe [-p ]
         > ## DESCRIPTION Coquelicot is a "one-click" file sharing web application with a focus on protecting users' privacy. Basic principle: users can upload a file to the server, in return they get a unique URL which can be shared with others in order to download the file. Coquelicot aims to protect, to some extent, users and system administrators from disclosure of the files exchanged from passive and not so active attackers. Coquelicot runs its own web server. It is not recommended to to use it directly. Coquelicot should rather be made accessible through a non-buffering HTTPS reverse proxy. ## OPTIONS * `-c` : Specify an alternate configuration file than the default `/etc/coquelicot/settings.yml`. * `-h`: Display usage and exit. ## COMMANDS * `start`: start the web server. Unless `-n` is specified, the daemon will be put in the background. * `stop`: stop the web server. * `gc`: run the garbage collection procedure. This is usually run through a crontab. * `migrate-jyraphe`: run the Jyraphe migration procedure. See README for more details. ## FILES * `/etc/coquelicot/settings.yml`: main configuration file. * `/etc/cron.d/coquelicot`: crontab for scheduling the garbage collection. * `/var/lib/coquelicot`: default directory where user files will be stored. * `/var/log/coquelicot/coquelicot.log`: default log file. ## SEE ALSO * `/usr/share/doc/coquelicot/README`, `/usr/share/doc/coquelicot/README.Debian` ## AUTHORS potager.org mh / immerda.ch This manual page was written by Jérémy Bobbio . debian/coquelicot.postinst0000755000000000000000000000150012157440557013153 0ustar #!/bin/sh set -e case "$1" in configure) if ! id coquelicot >/dev/null 2>&1; then adduser --system --group --gecos "Coquelicot web application" \ --no-create-home \ --home /var/lib/coquelicot coquelicot >/dev/null fi if ! dpkg-statoverride --list "/var/lib/coquelicot"; then chown coquelicot:coquelicot /var/lib/coquelicot chmod 750 /var/lib/coquelicot fi if ! dpkg-statoverride --list "/var/log/coquelicot"; then chown root:coquelicot /var/log/coquelicot chmod 770 /var/log/coquelicot touch /var/log/coquelicot/coquelicot.log chmod 660 /var/log/coquelicot/coquelicot.log chown coquelicot:coquelicot /var/log/coquelicot/coquelicot.log fi if ! dpkg-statoverride --list "/etc/coquelicot"; then chown root:coquelicot /etc/coquelicot chmod 750 /etc/coquelicot fi ;; *) ;; esac #DEBHELPER# debian/coquelicot.apache20000644000000000000000000000076112157440557012600 0ustar # This configuration can be directly used by issuing: # # a2enmod ssl proxy_http headers # ln -s /usr/share/doc/coquelicot/examples/coquelicot.apache2 \ # /etc/apache2/sites-enabled/coquelicot # SSLEngine on SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key ProxyPass / http://127.0.0.1:51161/ SetEnv proxy-sendchunks 1 RequestHeader set X-Forwarded-SSL "on" debian/gbp.conf0000644000000000000000000000023212157440557010614 0ustar [DEFAULT] pristine-tar = True [git-import-orig] filter = ['public/javascripts/jquery.min.js', 'public/images/background.jpg'] filter-pristine-tar = True debian/coquelicot.postrm0000755000000000000000000000023412157440557012617 0ustar #!/bin/sh set -e case "$1" in purge) rm -rf /etc/coquelicot rm -rf /var/lib/coquelicot rm -rf /var/log/coquelicot ;; *) ;; esac #DEBHELPER# debian/coquelicot.nginx0000644000000000000000000000073512157440557012421 0ustar # This configuration can be directly used by issuing: # # ln -s /usr/share/doc/coquelicot/examples/coquelicot.nginx \ # /etc/nginx/sites-available/coquelicot # server { listen 443; ssl on; ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem; ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key; location / { include /etc/nginx/proxy_params; proxy_set_header X-Forwarded-SSL on; proxy_pass http://127.0.0.1:51161; proxy_buffering off; } } debian/rules0000755000000000000000000000544712157440557010272 0ustar #!/usr/bin/make -f export DH_RUBY_GEMSPEC=debian/coquelicot.gemspec create-static-gemspec: ruby1.9.1 -rrubygems -e ' \ spec = Gem::Specification.load("coquelicot.gemspec"); \ spec.files.delete_if { |p| p.start_with? "debian/" }; \ spec.files << "lib/coquelicot/debian.rb"; \ spec.files << "public/javascripts/jquery.min.js"; \ File.write("debian/coquelicot.gemspec", spec.to_ruby); \ ' %: dh $@ --buildsystem=ruby --with ruby override_dh_auto_install: # Create the Gem that we ship as source code (for AGPL compliance) cp --preserve=all /usr/share/javascript/jquery/jquery.min.js public/javascripts/jquery.min.js ruby1.9.1 -rrubygems -rrubygems/package -r fileutils -e ' \ debian_version = `dpkg-parsechangelog | sed -n -e "s/^Version: //p"`.strip; \ _, upstream_version, debian_revision = debian_version.match(/^(.*)-(.*)$$/).to_a; \ upstream_version.gsub!(/~/, "0."); \ upstream_version.gsub!(/[^0-9a-zA-Z.]/, ""); \ debian_revision.gsub!(/~/, "0."); \ debian_revision.gsub!(/[^0-9a-zA-Z.]/, ""); \ spec = Gem::Specification.load("debian/coquelicot.gemspec"); \ if spec.version.to_s != upstream_version; \ $$stderr.puts "Please refresh the static gemspec:"; \ $$stderr.puts " debian/rules create-static-gemspec"; \ exit 1; \ end; \ spec.version = "#{upstream_version}.debian#{debian_revision}"; \ File.open("lib/coquelicot/debian.rb", "w") do |f| \ f.puts "# Generated for the Debian package"; \ f.puts "module Coquelicot"; \ f.puts " DEBIAN_VERSION = \"#{spec.version}\""; \ f.puts "end"; \ end; \ spec.mark_version; \ spec.validate; \ File.open("debian/coquelicot-#{spec.version}.gem", "w") do |gem_file| \ Gem::Package.open(gem_file, "w", nil) do |pkg| \ pkg.metadata = spec.to_yaml; \ spec.files.each do |dest| \ if dest == "coquelicot.gemspec"; \ src = "debian/coquelicot.gemspec"; \ else; \ src = dest; \ end; \ next if File.directory?(src); \ stat = File.stat(src); \ mode = stat.mode & 0777; \ size = stat.size; \ pkg.add_file_simple(dest, mode, size) do |tar_io| \ tar_io.write(open(src, "rb") { |f| f.read }); \ end; \ end; \ end; \ end; \ FileUtils.mkdir_p "debian/coquelicot/usr/share/coquelicot/public"; \ FileUtils.cp "debian/coquelicot-#{spec.version}.gem", \ "debian/coquelicot/usr/share/coquelicot/public/coquelicot-#{spec.version}.gem"; \ ' dpkg -s libjs-jquery | awk \ '/^Version:/ { print "coquelicot:Built-Using=jquery (=" $$2 ")" }' \ >> debian/coquelicot.substvars dh_auto_install -O--buildsystem=ruby override_dh_installman: LC_ALL=C.UTF-8 ronn debian/coquelicot.8.ron dh_installman -O--buildsystem=ruby override_dh_installchangelogs: dh_installchangelogs -O--buildsystem=ruby NEWS debian/control0000644000000000000000000000453112157440557010606 0ustar Source: coquelicot Section: web Priority: optional Maintainer: Jérémy Bobbio Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), rainbows, rake, ruby-activesupport (>= 3.2), ruby-activesupport-3.2, ruby-capybara, ruby-fast-gettext, ruby-haml, ruby-haml-magic-translations, ruby-hpricot, ruby-json, ruby-lockfile, ruby-maruku, ruby-moneta (>= 0.7), ruby-multipart-parser, ruby-rack, ruby-rack-test, ruby-ronn, ruby-rspec, ruby-sass, ruby-sinatra, ruby-sinatra-contrib, ruby-timecop, ruby-tzinfo, ruby-upr Standards-Version: 3.9.4 Vcs-Git: git://git.debian.org/colab-maint/coquelicot.git Vcs-Browser: http://git.debian.org/?p=collab-maint/coquelicot.git;a=summary Homepage: https://coquelicot.potager.org/ XS-Ruby-Versions: ruby1.9.1 Package: coquelicot XB-Ruby-Versions: ${ruby:Versions} Architecture: all Depends: adduser, libjs-jquery, lsb-base (>= 3.2-14), rainbows, ruby-fast-gettext, ruby-haml, ruby-haml-magic-translations, ruby-json, ruby-lockfile, ruby-maruku, ruby-moneta (>= 0.7), ruby-multipart-parser, ruby-rack, ruby-sass, ruby-sinatra, ruby-sinatra-contrib, ruby-upr, ruby1.9.1, ${misc:Depends}, ${shlibs:Depends} Recommends: apache2 | nginx | pound Built-Using: ${coquelicot:Built-Using} Description: "one-click" file sharing web application with a focus on users' privacy Coquelicot is a "one-click" file sharing web application with a focus on protecting users' privacy. . Basic principle: users can upload a file to the server, in return they get a unique URL which can be shared with others in order to download the file. . Coquelicot aims to protect, to some extent, users and system administrators from disclosure of the files exchanged from passive and not so active attackers. . Coquelicot should be installed behind a non-buffering HTTPS reverse proxy like Apache, nginx or pound. debian/coquelicot.dirs0000644000000000000000000000004612157440557012232 0ustar var/log/coquelicot var/lib/coquelicot debian/settings.yml0000644000000000000000000000664212157440557011573 0ustar # Default settings for Coquelicot # =============================== # # Coquelicot is a "one-click" file sharing web application with a focus # on protecting users' privacy. # # This file contains the default settings and their meaning. # # These settings are only here for illustration purpose. Site specific # configuration only needs to specify the ones that need to be changed. # Maximum size allowed for uploaded files # (in bytes) # # Default: 5242880 = 5 * 1024 * 1024 # max_file_size: 5242880 # Default expiration time (if unspecified by users) # (in minutes) # default_expire: 60 # Maximum expiration time that can be set by users # (in minutes) # # Default: 43200 = 60 * 24 * 30 ≈ 1 month # maximum_expire: 43200 # Time before complete cleanup of an expired file # (in minutes) # # Once a file is expired either because of time or because # it was set for only one download, Coquelicot will scrape # the file content, but keep an empty file around to display # a “Too late” message instead of the default “Not found”. # # This setting will influence how long will users see the # first message instead of the second in case they try to # access an expired link. # # Default: 10080 = 60 * 24 * 7 ≈ 1 week # gone_period: 10080 # Number of characters in generated filenames # # URL to download files looks like: # https://example.org/dhut7f73u2hiwwifwyrs-gs5wj3ixjheg6dg7 # (when no password has been specified) # or: # https://example.org/dhut7f73u2hiwwifwyrs # # This setting controls the first set of characters. # filename_length: 20 # Number of characters in generated passwords # # When no password is specified URL looks like: # https://example.org/dhut7f73u2hiwwifwyrs-gs5wj3ixjheg6dg7 # # This setting controls the second set of characters. The same # code is also used when using the 'Generate password…' link. # random_pass_length: 16 # Directory in which Coquelicot will write its files # depot_path: "/var/lib/coquelicot" # Text to display on top of the upload form # # This is indexed by locale code to support multiple languages. # It will fallback to English for unspecified languages. about_text: en: "" # Path to an additional stylesheet additional_css: "" # Path to the PID file of the web server pid: "/var/run/coquelicot.pid" # Path to Coquelicot log file # # Set to an empty string to disable logging. # log: "/var/log/coquelicot/coquelicot.log" # Listening addresses of the web server # # Each entries may be a port number for a TCP port, an “IP_ADDRESS:PORT” for # TCP listeners or a pathname for UNIX domain sockets. # # Examples: # - "51161" # listen to port 51161 on all TCP interfaces # - "127.0.0.1:51161" # listen to port 51161 on the loopback interface # - "/tmp/.coquelicot.sock" # listen on the given Unix domain socket # - "[::1]:51161" # listen to port 51161 on the IPv6 loopback interface # listen: - "127.0.0.1:51161" # Display debugging data in the browser when an exception is raised # # This should only be turned on when doing development. show_exceptions: false # Authentication method # # Please have look at # `/usr/share/doc/coquelicot/examples/settings-simplepass.yml` and # `/usr/share/doc/coquelicot/examples/settings-imap.yml` for more details. # # The default password is 'test'. authentication_method: name: "simplepass" upload_password: "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" debian/coquelicot.init.d0000755000000000000000000000461512157440557012467 0ustar #!/bin/sh ### BEGIN INIT INFO # Provides: coquelicot # Required-Start: $remote_fs # Required-Stop: $remote_fs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: "one-click" file sharing web application # Description: Coquelicot is a "one-click" file sharing web application # with a focus on protecting users' privacy. ### END INIT INFO # Do NOT "set -e" PATH=/sbin:/usr/sbin:/bin:/usr/bin DESC='Coquelicot "one-click" file sharing web application' NAME=coquelicot DAEMON=/usr/bin/coquelicot DAEMON_ARGS="start" PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME . /lib/lsb/init-functions do_start() { start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \ || return 1 LC_ALL=C.UTF-8 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \ $DAEMON_ARGS \ || return 2 } do_stop() { start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME RETVAL="$?" [ "$RETVAL" = 2 ] && return 2 start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON [ "$?" = 2 ] && return 2 rm -f "$PIDFILE" return "$RETVAL" } do_reopen_logs() { start-stop-daemon --stop --signal USR1 --quiet --oknodo --pidfile $PIDFILE } case "$1" in start) [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" do_start case "$?" in 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; esac ;; stop) [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" do_stop case "$?" in 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; esac ;; status) status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? ;; restart|force-reload) log_daemon_msg "Restarting $DESC" "$NAME" do_stop case "$?" in 0|1) do_start case "$?" in 0) log_end_msg 0 ;; 1) log_end_msg 1 ;; # Old process is still running *) log_end_msg 1 ;; # Failed to start esac ;; *) # Failed to stop log_end_msg 1 ;; esac ;; reopen-logs) [ "$VERBOSE" != no ] && log_daemon_msg "Reopening log files of $DESC" "$NAME" do_reopen_logs case "$?" in 0) [ "$VERBOSE" != no ] && log_end_msg 0 ;; *) [ "$VERBOSE" != no ] && log_end_msg 1 ;; esac ;; *) echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload|reopen-logs}" >&2 exit 3 ;; esac debian/ruby-tests.rake0000644000000000000000000000016412157440557012166 0ustar ENV['LC_ALL'] = 'C.UTF-8' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :default => :spec debian/compat0000644000000000000000000000000212157440557010376 0ustar 7 debian/coquelicot.cron.d0000644000000000000000000000032612157440557012455 0ustar # crontab fragment for coquelicot # Run the garbage collection procedure every 15 minutes 11,26,41,56 * * * * coquelicot [ -x /usr/bin/coquelicot ] && [ -f /etc/coquelicot/settings.yml ] && /usr/bin/coquelicot gc debian/README.Debian0000644000000000000000000000470612157440557011250 0ustar coquelicot for Debian ===================== Coquelicot should be ready to be tested out of the box. Point a browser at to make sure of it. The default password is "test". To use Coquelicot in production, you will need at least do two things: adjust the authentication method and setup a non-buffering HTTPS reverse proxy. Authentication method --------------------- To adjust the authentication method, edit the `authentication_method` options at the bottom of `/etc/coquelicot/settings.yml`. More details about the supported authentication methods can be found in `/usr/share/doc/coquelicot/examples/settings-simplepass.yml` for the pre-shared password and `/usr/share/doc/coquelicot/examples/settings-imap.yml` for authentication against an IMAP server. Non-buffering HTTPS reverse proxy --------------------------------- Coquelicot has been successfuly tested behind the following reverse proxies: Debian package | Example configuration file ----------------|-------------------------------------------------------- apache2 | /usr/share/doc/coquelicot/examples/coquelicot.apache2 nginx | /usr/share/doc/coquelicot/examples/coquelicot.nginx pound | /usr/share/doc/coquelicot/examples/coquelicot.pound Extra configuration ------------------- Other configuration settings can be modified in `/etc/coquelicot/settings.yml`. The default configuration can be seen in `/usr/share/doc/coquelicot/examples/settings-default.yml`. Changes to `pid_file` must be reflected in `/etc/init.d/coquelicot`. Likewise, changes to `log` must be reflected in `/etc/logrotate.d/coquelicot`. Migrate from Jyraphe -------------------- [Jyraphe] is another free software web file sharing application. Coquelicot provides a migration script to import Jyraphe 0.5 repositories as `coquelicot migrate-jyraphe`: Usage: coquelicot [options] migrate-jyraphe \ [command options] JYRAPHE_VAR > REWRITE_RULES Options: -c, --config FILE read settings from FILE Command options: -p, --rewrite-prefix PREFIX prefix URL in rewrite rules The last argument must be a path to the `var` directory of the Jyraphe installation. After migrating the files to Coquelicot, directives for Apache mod_rewrite will be printed on stdout which ought to be redirected to a file. Using the `-p` option will prefix URL with the given path in the rewrite rules. [Jyraphe]: http://home.gna.org/jyraphe/ debian/coquelicot.pound0000644000000000000000000000060712157440557012421 0ustar # This configuration can be copied over `/etc/pound/pound.cfg`. # The SSL PEM file location needs to be adjusted. User "www-data" Group "www-data" LogLevel 1 Alive 30 Control "/var/run/pound/poundctl.socket" ListenHTTPS Address 0.0.0.0 Port 443 Cert "/etc/ssl/private/cert.pem" AddHeader "X-Forwarded-SSL: on" Service BackEnd Address 127.0.0.1 Port 51161 End End End debian/coquelicot.links0000644000000000000000000000014012157440557012404 0ustar usr/share/javascript/jquery/jquery.min.js usr/share/coquelicot/public/javascripts/jquery.min.js debian/copyright0000644000000000000000000011035112157440557011134 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: coquelicot Source: https://coquelicot.potager.org/dist/ Files: * Copyright: 2010-2013 potager.org 2011 mh / immerda.ch License: AGPL-3+ Files: public/javascripts/jquery.lightBoxFu.js public/javascripts/jquery.uploadProgress.js Copyright: 2008 Piotr Sarnacki (drogomir.com) License: Expat Files: debian/* Copyright: 2013 Jerémy Bobbio License: permissive Copying and distribution of this package, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. License: Expat 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. License: AGPL-3+ GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 . Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. . Preamble . The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. . The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. . When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. . Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. . A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. . The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. . An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. . The precise terms and conditions for copying, distribution and modification follow. . TERMS AND CONDITIONS . 0. Definitions. . "This License" refers to version 3 of the GNU Affero General Public License. . "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. . "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. . To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. . A "covered work" means either the unmodified Program or a work based on the Program. . To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. . To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. . An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. . 1. Source Code. . The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. . A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. . The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. . The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. . The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. . The Corresponding Source for a work in source code form is that same work. . 2. Basic Permissions. . All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. . You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. . Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. . 3. Protecting Users' Legal Rights From Anti-Circumvention Law. . No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. . When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. . 4. Conveying Verbatim Copies. . You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. . You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. . 5. Conveying Modified Source Versions. . You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: . a) The work must carry prominent notices stating that you modified it, and giving a relevant date. . b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". . c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. . d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. . A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. . 6. Conveying Non-Source Forms. . You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: . a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. . b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. . c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. . d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. . e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. . A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. . A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. . "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. . If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). . The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. . Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. . 7. Additional Terms. . "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. . When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. . Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: . a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or . b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or . c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or . d) Limiting the use for publicity purposes of names of licensors or authors of the material; or . e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or . f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. . All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. . If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. . Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. . 8. Termination. . You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). . However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. . Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. . Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. . 9. Acceptance Not Required for Having Copies. . You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. . 10. Automatic Licensing of Downstream Recipients. . Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. . An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. . You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. . 11. Patents. . A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". . A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. . Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. . In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. . If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. . If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. . A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. . Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. . 12. No Surrender of Others' Freedom. . If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. . 13. Remote Network Interaction; Use with the GNU General Public License. . Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. . Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. . 14. Revised Versions of this License. . The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. . Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. . If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. . Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. . 15. Disclaimer of Warranty. . THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. . 16. Limitation of Liability. . IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. . 17. Interpretation of Sections 15 and 16. . If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. . END OF TERMS AND CONDITIONS . How to Apply These Terms to Your New Programs . If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. . To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. . Copyright (C) . This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. . You should have received a copy of the GNU Affero General Public License along with this program. If not, see . . Also add information on how to contact you by electronic and paper mail. . If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. . You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see . debian/changelog0000644000000000000000000000051312157440557011051 0ustar coquelicot (0.9.2-2) unstable; urgency=low * Upload to unstable. * Ship upstream changelog. -- Jérémy Bobbio Mon, 17 Jun 2013 00:50:56 +0200 coquelicot (0.9.2-1) experimental; urgency=low * Initial release. (Closes: #704612) -- Jérémy Bobbio Sun, 21 Apr 2013 17:55:07 +0000 debian/source/0000755000000000000000000000000012157440557010500 5ustar debian/source/format0000644000000000000000000000001412157440557011706 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000011012157440557010221 0ustar version=3 https://coquelicot.potager.org/dist/ coquelicot-(.*)\.tar\.gz debian/patches/0000755000000000000000000000000012157440557010627 5ustar debian/patches/0002-Set-a-default-time-zone.patch0000644000000000000000000000214412157440557016530 0ustar From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Bobbio?= Date: Wed, 3 Apr 2013 10:05:33 +0000 Subject: Set a default time zone --- coquelicot.gemspec | 1 + spec/spec_helper.rb | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/coquelicot.gemspec b/coquelicot.gemspec index 5d8f3e1..b9c1b15 100644 --- a/coquelicot.gemspec +++ b/coquelicot.gemspec @@ -50,6 +50,7 @@ Gem::Specification.new do |s| s.add_development_dependency 'rack-test' s.add_development_dependency 'capybara' s.add_development_dependency 'active_support' + s.add_development_dependency 'tzinfo' s.add_development_dependency 'gettext' s.add_runtime_dependency 'sinatra', '~>1.3' diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index d95c565..375e9cf 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -30,6 +30,11 @@ require 'rack/test' require 'rspec' require 'stringio' +# Set a default time zone. Otherwise tests using Timecop fail when +# active_support is loaded. +require 'active_support/time' +Time.zone = 'UTC' + require 'coquelicot' shared_context 'with Coquelicot::Application' do debian/patches/0004-Send-the-gem-prepared-earlier-as-source.patch0000644000000000000000000001247412157440557021576 0ustar From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Bobbio?= Date: Wed, 3 Apr 2013 13:21:37 +0000 Subject: Send the gem prepared earlier as source --- lib/coquelicot.rb | 1 + lib/coquelicot/app.rb | 27 ++----------------------- lib/coquelicot/helpers.rb | 6 +----- spec/coquelicot/app_spec.rb | 46 +++++-------------------------------------- 4 files changed, 9 insertions(+), 71 deletions(-) diff --git a/lib/coquelicot.rb b/lib/coquelicot.rb index 3b80200..ac54035 100644 --- a/lib/coquelicot.rb +++ b/lib/coquelicot.rb @@ -17,6 +17,7 @@ # along with this program. If not, see . require 'coquelicot/version' +require 'coquelicot/debian' require 'coquelicot/auth' require 'coquelicot/stored_file' require 'coquelicot/depot' diff --git a/lib/coquelicot/app.rb b/lib/coquelicot/app.rb index 181d318..7b348ea 100644 --- a/lib/coquelicot/app.rb +++ b/lib/coquelicot/app.rb @@ -26,7 +26,6 @@ require 'moneta' require 'unicorn/launcher' require 'rainbows' require 'optparse' -require 'rubygems/package' module Coquelicot class << self @@ -294,30 +293,8 @@ module Coquelicot end get '/source' do - Gem::DefaultUserInteraction.ui = Gem::SilentUI.new - - spec = Gem::loaded_specs['coquelicot'].clone - Dir.chdir(spec.full_gem_path) do - spec.version = gem_version - spec.mark_version - spec.validate - Tempfile.open('coquelicot-gem') do |gem_file| - Gem::Package.open(gem_file, 'w', nil) do |pkg| - pkg.metadata = spec.to_yaml - spec.files.each do |file| - next if File.directory?(file) - stat = File.stat(file) - mode = stat.mode & 0777 - size = stat.size - pkg.add_file_simple(file, mode, size) do |tar_io| - tar_io.write(open(file, "rb") { |f| f.read }) - end - end - end - send_file gem_file.path, :filename => spec.file_name - gem_file.unlink - end - end + send_file "/usr/share/coquelicot/public/coquelicot-#{gem_version}.gem", + :filename => "coquelicot-#{gem_version}.gem" end get '/random_pass' do diff --git a/lib/coquelicot/helpers.rb b/lib/coquelicot/helpers.rb index 75ab131..fd0bb1c 100644 --- a/lib/coquelicot/helpers.rb +++ b/lib/coquelicot/helpers.rb @@ -16,8 +16,6 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -require 'rubygems' - module Coquelicot module Helpers def can_provide_git_repository? @@ -45,9 +43,7 @@ module Coquelicot end def gem_version - spec = Gem::loaded_specs['coquelicot'] - current_version = spec ? spec.version.to_s.gsub(/\.[0-9a-zA-Z]+\.[0-9]{8}/, '') : Coquelicot::VERSION - Gem::Version.new("#{current_version}.#{gem_hostname}.#{Date.today.strftime('%Y%m%d')}") + Coquelicot::DEBIAN_VERSION end def clone_command diff --git a/spec/coquelicot/app_spec.rb b/spec/coquelicot/app_spec.rb index 44e5c6a..064ef2a 100644 --- a/spec/coquelicot/app_spec.rb +++ b/spec/coquelicot/app_spec.rb @@ -272,47 +272,11 @@ describe Coquelicot::Application do end describe 'get /source' do - context 'when the server hostname is one-cool-hostname' do - before(:each) do - Coquelicot::Helpers.module_eval('remove_class_variable :@@hostname if defined? @@hostname') - Socket.stub(:gethostname).and_return('one-cool-hostname') - visit '/source' - end - it 'should send a file to be saved' do - page.response_headers['Content-Type'].should == 'application/octet-stream' - page.response_headers['Content-Disposition'].should =~ /^attachment;/ - end - it 'should send a file with a proposed name correct for coquelicot gem' do - page.response_headers['Content-Disposition'].should =~ /filename="coquelicot-.*\.gem"/ - end - context 'the downloaded gem' do - around(:each) do |example| - Gem::Package.open(StringIO.new(page.driver.response.body)) do |gem| - @gem = gem - example.run - end - end - it 'should be named "coquelicot"' do - @gem.metadata.name.should == 'coquelicot' - end - it "should have a version containing 'onecoolhostname' for the hostname" do - @gem.metadata.version.to_s.should =~ /\.onecoolhostname\./ - end - it "should have a version containing today's date" do - Timecop.freeze(Time.now) do - date_str = Date.today.strftime('%Y%m%d') - @gem.metadata.version.to_s.should =~ /\.#{date_str}$/ - end - end - it 'should at least contain this spec file' do - this_file = __FILE__.gsub(/^.*\/spec/, 'spec') - content = nil - @gem.each do |file| - content = file.read if file.full_name.end_with?(this_file) - end - content.should == File.open(__FILE__, 'rb').read - end - end + it 'should send the Debian prepared gem' do + app.any_instance.should_receive(:send_file). + with("/usr/share/coquelicot/public/coquelicot-#{Coquelicot::DEBIAN_VERSION}.gem", + :filename => "coquelicot-#{Coquelicot::DEBIAN_VERSION}.gem") + visit '/source' end end debian/patches/0003-Do-not-use-rubygems-or-bundler-to-run-Coquelicot.patch0000644000000000000000000000132012157440557023407 0ustar From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Bobbio?= Date: Wed, 3 Apr 2013 15:46:43 +0000 Subject: Do not use rubygems or bundler to run Coquelicot --- bin/coquelicot | 8 -------- 1 file changed, 8 deletions(-) diff --git a/bin/coquelicot b/bin/coquelicot index 30ccc35..49d2931 100755 --- a/bin/coquelicot +++ b/bin/coquelicot @@ -16,14 +16,6 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -begin - require 'rubygems' - require 'bundler' - Bundler.setup -rescue LoadError - # Maybe all dependencies were handled by some other mechanisms -end - require 'coquelicot' Coquelicot.run!(ARGV) debian/patches/0006-Stop-using-non-free-background-image.patch0000644000000000000000000000423512157440557021213 0ustar From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Bobbio?= Date: Sun, 21 Apr 2013 17:53:18 +0000 Subject: Stop using non-free background image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The background image currently shipped with Coquelicot is licensed under CC-BY 2.0 which is not DFSG compliant. So we must do without… --- README | 4 ---- spec/coquelicot/app_spec.rb | 4 ++-- views/style.sass | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/README b/README index 7571d3b..fe9cee5 100644 --- a/README +++ b/README @@ -106,10 +106,6 @@ Authors Coquelicot is distributed under the [GNU Affero General Public License] version 3 or (at your option) any later version. -Background image (`public/images/background.jpg`) derived from: -[“coquelicot” picture] © 2008 Jean-Louis Zimmermann -Licensed under [Creative Commons Attributions 2.0 Generic] - *jQuery* is © 2011 John Resig. Licensed under the [MIT license]. *jquery.uploadProgress* is © 2008 Piotr Sarnacki. Licensed under the [MIT license]. diff --git a/spec/coquelicot/app_spec.rb b/spec/coquelicot/app_spec.rb index 064ef2a..1f4078d 100644 --- a/spec/coquelicot/app_spec.rb +++ b/spec/coquelicot/app_spec.rb @@ -283,8 +283,8 @@ describe Coquelicot::Application do describe 'post /authenticate' do context 'when given a request with too much input' do before do - # background image is bigger than 5 kiB - path = File.expand_path('../../../public/images/background.jpg', __FILE__) + # license is bigger than 5 kiB + path = File.expand_path('../../fixtures/LICENSE-secret-1.0/reference', __FILE__) post '/authenticate', :file => Rack::Test::UploadedFile.new(path, 'text/plain') end it 'should get status 413 (Request entity too large)' do diff --git a/views/style.sass b/views/style.sass index d645d4d..c1a18d1 100644 --- a/views/style.sass +++ b/views/style.sass @@ -19,7 +19,7 @@ */ body - background: no-repeat fixed 50% 100% #70794e url('images/background.jpg') + background: #70794e font-family: Georgia color: darkgreen debian/patches/series0000644000000000000000000000046112157440557012045 0ustar 0001-Make-rubygems-and-bundler-optional-to-run-the-tests.patch 0002-Set-a-default-time-zone.patch 0003-Do-not-use-rubygems-or-bundler-to-run-Coquelicot.patch 0004-Send-the-gem-prepared-earlier-as-source.patch 0005-Adjust-paths-to-fit-Debian-packaging.patch 0006-Stop-using-non-free-background-image.patch debian/patches/0005-Adjust-paths-to-fit-Debian-packaging.patch0000644000000000000000000000664112157440557021112 0ustar From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Bobbio?= Date: Wed, 3 Apr 2013 15:57:07 +0000 Subject: Adjust paths to fit Debian packaging --- lib/coquelicot/app.rb | 21 +++++++++++++++------ lib/coquelicot/base_app.rb | 5 ++++- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/lib/coquelicot/app.rb b/lib/coquelicot/app.rb index 7b348ea..6c2ccb0 100644 --- a/lib/coquelicot/app.rb +++ b/lib/coquelicot/app.rb @@ -26,6 +26,7 @@ require 'moneta' require 'unicorn/launcher' require 'rainbows' require 'optparse' +require 'zlib' module Coquelicot class << self @@ -232,7 +233,13 @@ module Coquelicot set :protection, :except => [:session_hijacking, :remote_token] set :root, Proc.new { app_file && File.expand_path('../../..', app_file) } - set :depot_path, Proc.new { File.join(root, 'files') } + set :views, Proc.new { root && File.exists?(File.join(root, 'views')) ? + File.join(root, 'views') : + '/usr/share/coquelicot/views' } + set :public_folder, Proc.new { root && File.exists?(File.join(root, 'public')) ? + File.join(root, 'public') : + '/usr/share/coquelicot/public' } + set :depot_path, '/var/lib/coquelicot' set :max_file_size, 5 * 1024 * 1024 # 5 MiB set :default_expire, 60 set :maximum_expire, 60 * 24 * 30 # 1 month @@ -241,14 +248,14 @@ module Coquelicot set :random_pass_length, 16 set :about_text, 'en' => '' set :additional_css, '' - set :pid, Proc.new { File.join(root, 'tmp/coquelicot.pid') } - set :log, Proc.new { File.join(root, 'tmp/coquelicot.log') } + set :pid, '/var/run/coquelicot.pid' + set :log, '/var/log/coquelicot/coquelicot.log' set :listen, [ "127.0.0.1:51161" ] set :show_exceptions, false set :authentication_method, :name => :simplepass, :upload_password => 'a94a8fe5ccb19ba61c4c0873d391e987982fbbd3' - config_file File.expand_path('../../../conf/settings.yml', __FILE__) + config_file '/etc/coquelicot/settings.yml' set :upr_backend, Upr::Monitor.new(Moneta.new(:Memory)) use Upr, :backend => upr_backend, :path_info => %q{/upload} @@ -284,8 +291,10 @@ module Coquelicot end get '/README' do - haml(":markdown\n" + - File.read(File.join(settings.root, 'README')).gsub(/^/, ' ')) + content = File.exists?(File.join(settings.root, 'README')) ? + File.read(File.join(settings.root, 'README')) : + Zlib::GzipReader.new(File.open('/usr/share/doc/coquelicot/README.gz')).read + haml(":markdown\n" + content.gsub(/^/, ' ')) end get '/about-your-data' do diff --git a/lib/coquelicot/base_app.rb b/lib/coquelicot/base_app.rb index c253be4..0e080ee 100644 --- a/lib/coquelicot/base_app.rb +++ b/lib/coquelicot/base_app.rb @@ -28,7 +28,10 @@ module Coquelicot helpers Coquelicot::Helpers FastGettext.add_text_domain 'coquelicot', - :path => File.expand_path('../../../po', __FILE__), :type => 'po' + :path => File.exists?(File.expand_path('../../../po', __FILE__)) ? + File.expand_path('../../../po', __FILE__) : + '/usr/share/coquelicot/po', + :type => 'po' FastGettext.available_locales = AVAILABLE_LOCALES Haml::MagicTranslations.enable(:fast_gettext) debian/patches/0001-Make-rubygems-and-bundler-optional-to-run-the-tests.patch0000644000000000000000000000141312157440557024111 0ustar From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Bobbio?= Date: Wed, 3 Apr 2013 09:34:07 +0000 Subject: Make rubygems and bundler optional to run the tests --- spec/spec_helper.rb | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 5e20020..d95c565 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -17,10 +17,14 @@ ENV['RACK_ENV'] = 'test' -require 'rubygems' -require 'bundler' -Bundler.require(:default, :development) -Bundler.setup +begin + require 'rubygems' + require 'bundler' + Bundler.require(:default, :development) + Bundler.setup +rescue LoadError + # Assume all dependencies were handled by some other mechanisms +end require 'rack/test' require 'rspec' debian/README.source0000644000000000000000000000244712157440557011366 0ustar Debian packaging notes for Coquelicot ===================================== Debian packaging for Coquelicot is managed in a Git repository using git-buildpackage. Packaging practices also follow most of the advices provided by Russ Allbery at: Quilt patches are managed using gbp-pq. Here is how a to setup a work environment: git clone git+ssh://git.debian.org/colab-maint/coquelicot.git cd coquelicot git branch upstream origin/upstream git branch pristine-tar origin/pristine-tar git remote add potager-upstream https://coquelicot.potager.org/coquelicot.git Once this is done, upgrading to a new version should look like: VERSION=0.9.3 git fetch potager-upstream git tag -v coquelicot-$VERSION uscan --verbose git-import-orig --upstream-vcs-tag=coquelicot-$VERSION ../coquelicot-$VERSION.tar.gz debian/rules create-static-gemspec [… Adapt as needed, refresh debian/patches …] dch -v $VERSION-1 git-buildpackage [… Test, hack, build, repeat …] dch --release git commit -m "Release version $VERSION" debian/changelog git-buildpackage [… Check and test that everything is good once more …] git tag -s -F ../build-area/coquelicot_$VERSION-1_*.changes debian/$VERSION-1 debian/coquelicot.docs0000644000000000000000000000000712157440557012216 0ustar README debian/coquelicot.gemspec0000644000000000000000000001475112157440557012724 0ustar # -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "coquelicot" s.version = "0.9.2" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["potager.org", "mh / immerda.ch"] s.date = "2013-04-21" s.description = "Coquelicot is a \"one-click\" file sharing web application with a\nfocus on protecting users' privacy.\n\nBasic principle: users can upload a file to the server, in return they\nget a unique URL which can be shared with others in order to download\nthe file.\n\nCoquelicot aims to protect, to some extent, users and system\nadministrators from disclosure of the files exchanged from passive and\nnot so active attackers.\n" s.email = ["jardiniers@potager.org"] s.executables = ["coquelicot"] s.files = ["Gemfile", "Gemfile.lock", "HACKING", "INSTALL", "LICENSE", "NEWS", "README", "Rakefile", "TODO", "bin/coquelicot", "conf/settings-default.yml", "conf/settings-imap.yml", "conf/settings-simplepass.yml", "coquelicot.gemspec", "lib/coquelicot.rb", "lib/coquelicot/app.rb", "lib/coquelicot/auth.rb", "lib/coquelicot/auth/imap.rb", "lib/coquelicot/auth/simplepass.rb", "lib/coquelicot/base_app.rb", "lib/coquelicot/depot.rb", "lib/coquelicot/helpers.rb", "lib/coquelicot/jyraphe_migrator.rb", "lib/coquelicot/num.rb", "lib/coquelicot/rack/multipart_parser.rb", "lib/coquelicot/rack/upload.rb", "lib/coquelicot/stored_file.rb", "lib/coquelicot/version.rb", "po/coquelicot.pot", "po/de/coquelicot.po", "po/fr/coquelicot.po", "public/images/ajax-loader.gif", "public/images/blank.gif", "public/images/overlay.png", "public/javascripts/coquelicot.auth.imap.js", "public/javascripts/coquelicot.auth.simplepass.js", "public/javascripts/coquelicot.js", "public/javascripts/jquery.lightBoxFu.js", "public/javascripts/jquery.uploadProgress.js", "public/stylesheets/lightbox-fu-ie6.css", "public/stylesheets/lightbox-fu-ie7.css", "spec/coquelicot/app_spec.rb", "spec/coquelicot/depot_spec.rb", "spec/coquelicot/jyraphe_migrator_spec.rb", "spec/coquelicot/rack/multipart_parser_spec.rb", "spec/coquelicot/rack/upload_spec.rb", "spec/coquelicot/stored_file_spec.rb", "spec/coquelicot_spec.rb", "spec/fixtures/LICENSE-secret-1.0/reference", "spec/fixtures/LICENSE-secret-1.0/stored_file", "spec/fixtures/LICENSE-secret-2.0/reference", "spec/fixtures/LICENSE-secret-2.0/stored_file", "spec/fixtures/LICENSE-secret-2.0/stored_file.content", "spec/fixtures/small-secret-1.0/reference", "spec/fixtures/small-secret-1.0/stored_file", "spec/spec_helper.rb", "views/about_your_data.haml", "views/auth/imap.haml", "views/auth/simplepass.haml", "views/download_in_progress.haml", "views/enter_file_key.haml", "views/error.haml", "views/expired.haml", "views/forbidden.haml", "views/index.haml", "views/layout.haml", "views/not_found.haml", "views/ready.haml", "views/style.sass", "lib/coquelicot/debian.rb", "public/javascripts/jquery.min.js"] s.homepage = "https://coquelicot.potager.org/" s.require_paths = ["lib"] s.rubygems_version = "1.8.23" s.summary = "\"one-click\" file sharing web application focusing on privacy" if s.respond_to? :specification_version then s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, ["~> 2.6"]) s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, ["~> 1.3"]) s.add_runtime_dependency(%q, ["~> 1.3"]) s.add_runtime_dependency(%q, ["~> 1.1"]) s.add_runtime_dependency(%q, ["~> 3.1"]) s.add_runtime_dependency(%q, ["~> 0.3"]) s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, ["~> 2.0"]) s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, ["~> 0.7"]) else s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 2.6"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 1.3"]) s.add_dependency(%q, ["~> 1.3"]) s.add_dependency(%q, ["~> 1.1"]) s.add_dependency(%q, ["~> 3.1"]) s.add_dependency(%q, ["~> 0.3"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 2.0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 0.7"]) end else s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 2.6"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 1.3"]) s.add_dependency(%q, ["~> 1.3"]) s.add_dependency(%q, ["~> 1.1"]) s.add_dependency(%q, ["~> 3.1"]) s.add_dependency(%q, ["~> 0.3"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 2.0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 0.7"]) end end