repo string | commit string | message string | diff string |
|---|---|---|---|
ahefner/mixalot | d91c4d698ca53c5257d69450a4cb4533ecb362d4 | Added some docs for vorbis functions | diff --git a/doc/mixalot.html b/doc/mixalot.html
index 43d4a57..e55b299 100644
--- a/doc/mixalot.html
+++ b/doc/mixalot.html
@@ -1,972 +1,1215 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Mixalot User Manual</title>
<style type="text/css" ... |
ahefner/mixalot | e2dc07a881394844a04d96afa3eb8971fd2a66fd | String handling and tag cleaning has been placed in a separate file. | diff --git a/mpg123-ffi.asd b/mpg123-ffi.asd
index d97d83e..162d046 100644
--- a/mpg123-ffi.asd
+++ b/mpg123-ffi.asd
@@ -1,10 +1,11 @@
(asdf:defsystem :mpg123-ffi
:name "libmpg123 FFI"
:description "CFFI interface to libmpg123"
:version "0.0.2"
:author "Andy Hefner <ahefner@gmail.com>"
:license "MIT-sty... |
ahefner/mixalot | f17aa7d8ddc3d89ad349052286f7828eee4caa8c | Vorbis fixes: Build on Darwin, EOF handling, mono files, warn (not err) on rate mismatch | diff --git a/vorbis-stream.lisp b/vorbis-stream.lisp
index 16f0cf0..bcb9a2b 100644
--- a/vorbis-stream.lisp
+++ b/vorbis-stream.lisp
@@ -1,168 +1,186 @@
+
(defpackage :mixalot-vorbis
(:use :common-lisp :cffi :mixalot :vorbisfile)
(:export #:vorbis-streamer
#:make-vorbis-streamer
#:vorbis-... |
ahefner/mixalot | fd6c3ba73f48a3e6f5c82777b41e8ec05996d946 | Added some comments. | diff --git a/vorbisfile.lisp b/vorbisfile.lisp
index a396888..ecf3e5c 100644
--- a/vorbisfile.lisp
+++ b/vorbisfile.lisp
@@ -1,281 +1,292 @@
;;;; CFFI bindings to libvorbisfile
;;;; Copyright (c) 2010 Andy Hefner, Sumant S.R. Oemrawsingh
;;;; Permission is hereby granted, free of charge, to any person obtaining
... |
ahefner/mixalot | 14b22936a5b2eab1ec9c6c8efb2702336e6275d0 | Seek protocol implemented, not tested. | diff --git a/flac-package.lisp b/flac-package.lisp
index 2f85f1f..1bccab5 100644
--- a/flac-package.lisp
+++ b/flac-package.lisp
@@ -1,29 +1,34 @@
(defpackage :flac
(:use :common-lisp :cffi)
(:export #:flac-bool
#:flac-int16
#:flac-int32
#:flac-uint64
#:flac-meta... |
ahefner/mixalot | 8b87098780de25d6144611fd59afb03326288fea | flac-streamer playback seems to work | diff --git a/flac-grovelling.lisp b/flac-grovelling.lisp
index a2bacf7..7914f58 100644
--- a/flac-grovelling.lisp
+++ b/flac-grovelling.lisp
@@ -1,67 +1,88 @@
;;;; CFFI grovelling file for libFLAC
;;;
;;; Sumant S.R. Oemrawsingh, 2010
(in-package :flac)
(include "FLAC/stream_decoder.h")
(cc-flags "-lFLAC" "-l... |
ahefner/mixalot | 349a5b82182fd9ba3d3c842d20e4c04021cd4543 | FLAC streamer implemented but not working | diff --git a/flac-grovelling-metadata.lisp b/flac-grovelling-metadata.lisp
index 6bf3450..0e57c00 100644
--- a/flac-grovelling-metadata.lisp
+++ b/flac-grovelling-metadata.lisp
@@ -1,12 +1,12 @@
;;;; CFFI grovelling file for libFLAC metadata
;;;
;;; Sumant S.R. Oemrawsingh, 2010
(in-package :flac)
(include "FL... |
ahefner/mixalot | 1ad11dd1310c683c1f46650a4cee1ccbd7c97a52 | Fixed bug in open-vorbis-file | diff --git a/vorbis-stream.lisp b/vorbis-stream.lisp
index a0cedfa..16f0cf0 100644
--- a/vorbis-stream.lisp
+++ b/vorbis-stream.lisp
@@ -1,163 +1,168 @@
(defpackage :mixalot-vorbis
(:use :common-lisp :cffi :mixalot :vorbisfile)
(:export #:vorbis-streamer
#:make-vorbis-streamer
#:vorbis-sa... |
ahefner/mixalot | 592de4f7728b2f781633111a01482837a092b2de | Initial check-in for FLAC support; nothing working yet. | diff --git a/flac-ffi.asd b/flac-ffi.asd
new file mode 100644
index 0000000..46051e4
--- /dev/null
+++ b/flac-ffi.asd
@@ -0,0 +1,17 @@
+;;; CFFI-Grovel is needed for processing grovel-file components
+(cl:eval-when (:load-toplevel :execute)
+ (asdf:operate 'asdf:load-op 'cffi-grovel))
+
+(asdf:defsystem :flac-ffi
+ :... |
ahefner/mixalot | 4f8bb893efff2223fc52101c9ae4d0404ae2b3e2 | Added support for mono Ogg Vorbis (not tested) | diff --git a/vorbis-stream.lisp b/vorbis-stream.lisp
index e82b71a..a0cedfa 100644
--- a/vorbis-stream.lisp
+++ b/vorbis-stream.lisp
@@ -1,153 +1,163 @@
(defpackage :mixalot-vorbis
(:use :common-lisp :cffi :mixalot :vorbisfile)
(:export #:vorbis-streamer
#:make-vorbis-streamer
#:vorbis-sa... |
ahefner/mixalot | ff0e9ced5d3f9d70fd771d76a5a4fd5a13b02d2f | Another clean-up of open-vorbis-file. | diff --git a/vorbis-stream.lisp b/vorbis-stream.lisp
index fb2344d..e82b71a 100644
--- a/vorbis-stream.lisp
+++ b/vorbis-stream.lisp
@@ -1,153 +1,153 @@
(defpackage :mixalot-vorbis
(:use :common-lisp :cffi :mixalot :vorbisfile)
(:export #:vorbis-streamer
#:make-vorbis-streamer
#:vorbis-sa... |
ahefner/mixalot | 489ca02f51e1c67a722b31969d80e9fce484badb | Clean-up of open-vorbis-file. | diff --git a/vorbis-stream.lisp b/vorbis-stream.lisp
index b9b0e32..fb2344d 100644
--- a/vorbis-stream.lisp
+++ b/vorbis-stream.lisp
@@ -1,152 +1,153 @@
(defpackage :mixalot-vorbis
(:use :common-lisp :cffi :mixalot :vorbisfile)
(:export #:vorbis-streamer
#:make-vorbis-streamer
#:vorbis-sa... |
ahefner/mixalot | 6656aa9fa1098fd1678feca14f434997f03bab8b | clean-up of get-vorbis-tags-from-file | diff --git a/vorbisfile.lisp b/vorbisfile.lisp
index f686130..a396888 100644
--- a/vorbisfile.lisp
+++ b/vorbisfile.lisp
@@ -1,283 +1,281 @@
;;;; CFFI bindings to libvorbisfile
;;;; Copyright (c) 2010 Andy Hefner, Sumant S.R. Oemrawsingh
;;;; Permission is hereby granted, free of charge, to any person obtaining
... |
ahefner/mixalot | ead5757c627ce894411cada4dc6e4502b2e31f60 | Bug fix for mpg123 tags | diff --git a/mpg123.lisp b/mpg123.lisp
index 0529f59..b1a043e 100644
--- a/mpg123.lisp
+++ b/mpg123.lisp
@@ -326,583 +326,583 @@
;;; Decoders query:
(defcfun (%mpg123-decoders "mpg123_decoders") :pointer)
(defcfun (%mpg123-supported-decoders "mpg123_supported_decoders") :pointer)
(defun translate-string-pointers ... |
ahefner/mixalot | ebf75a5c3b1c45c1a945ba982e336cbbc9169b92 | Code clean-up again, working tags, play, seek. | diff --git a/vorbis-stream.lisp b/vorbis-stream.lisp
index 265197b..b9b0e32 100644
--- a/vorbis-stream.lisp
+++ b/vorbis-stream.lisp
@@ -1,120 +1,152 @@
(defpackage :mixalot-vorbis
(:use :common-lisp :cffi :mixalot :vorbisfile)
(:export #:vorbis-streamer
#:make-vorbis-streamer
#:vorbis-sa... |
ahefner/mixalot | 29aa9534d84dc50a3f2eb5b292642346d7cc93d5 | Cleanup of existing code, added vorbis stream (not working yet, though). | diff --git a/mixalot-vorbis.asd b/mixalot-vorbis.asd
new file mode 100644
index 0000000..8ec915f
--- /dev/null
+++ b/mixalot-vorbis.asd
@@ -0,0 +1,9 @@
+(asdf:defsystem :mixalot-vorbis
+ :name "Mixalot-vorbis"
+ :description "Vorbis Streamer class for Mixalot"
+ :version "0.0.1"
+ :author "Sumant S.R. Oemrawsingh <... |
ahefner/mixalot | 4810b67bf38b94622304e4bcdd5df06478ef4651 | Initial check-in of vorbisfile interface. | diff --git a/vorbisfile-ffi.asd b/vorbisfile-ffi.asd
new file mode 100644
index 0000000..3fa1f70
--- /dev/null
+++ b/vorbisfile-ffi.asd
@@ -0,0 +1,15 @@
+;;; CFFI-Grovel is needed for processing grovel-file components
+(cl:eval-when (:load-toplevel :execute)
+ (asdf:operate 'asdf:load-op 'cffi-grovel))
+
+(asdf:defsys... |
ahefner/mixalot | c33c8df693850dd0cfd2635b21c0b1a9510cfceb | Filter out genre tags set to "genre". | diff --git a/mpg123.lisp b/mpg123.lisp
index efd4db2..0529f59 100644
--- a/mpg123.lisp
+++ b/mpg123.lisp
@@ -327,579 +327,582 @@
(defcfun (%mpg123-decoders "mpg123_decoders") :pointer)
(defcfun (%mpg123-supported-decoders "mpg123_supported_decoders") :pointer)
(defun translate-string-pointers (pointers)
(loop f... |
ahefner/mixalot | f51cb4ff3c9b479baf6f854ea310c6974fa32a60 | Note development version in git. | diff --git a/doc/mixalot.html b/doc/mixalot.html
index 3dfbc54..43d4a57 100644
--- a/doc/mixalot.html
+++ b/doc/mixalot.html
@@ -1,584 +1,584 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Mixalot User Manual</title>
<style type="text/css" t... |
ahefner/mixalot | b0cd402736025e50adfdb4c1199420411f24203b | Documentation updates. | diff --git a/doc/mixalot.html b/doc/mixalot.html
index 1113fb3..3dfbc54 100644
--- a/doc/mixalot.html
+++ b/doc/mixalot.html
@@ -1,939 +1,972 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Mixalot User Manual</title>
<style type="text/css" t... |
ahefner/mixalot | 15e8d7875986a6047df092cdb280c311dd92f1f8 | OS X support via libao. | diff --git a/ffi-common.lisp b/ffi-common.lisp
index 5635ab7..c531082 100644
--- a/ffi-common.lisp
+++ b/ffi-common.lisp
@@ -1,38 +1,45 @@
(defpackage :mixalot-ffi-common
(:use :cl :cffi)
(:export #:size_t
#:off_t
#:loff_t
#:SEEK_SET
#:SEEK_CUR
#:SEEK_E... |
ahefner/mixalot | ecc6778a391a575725ebf22eb10e9e05fc4ed4ea | Bump version number in docs to 0.0.3. | diff --git a/doc/mixalot.html b/doc/mixalot.html
index 9d9dbe5..1113fb3 100644
--- a/doc/mixalot.html
+++ b/doc/mixalot.html
@@ -1,526 +1,526 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Mixalot User Manual</title>
<style type="text/css" t... |
ahefner/mixalot | 148141d073029020e4736e907a1cc962453fb754 | Added keyword to inhibit prescanning of MP3 files before playback. | diff --git a/doc/mixalot.html b/doc/mixalot.html
index 2af79a6..9d9dbe5 100644
--- a/doc/mixalot.html
+++ b/doc/mixalot.html
@@ -327,611 +327,613 @@ CL-USER>
may want to adjust its buffering behavior when the stream is paused and unpaused.
</p>
<div class="def"><a name="streamer-pause">Generic Function</a>
... |
ahefner/mixalot | e58533d60e37c1205863e4e133662159611c8616 | Didn't mean to commit with latency set to 100ms. Bump up to 300ms. | diff --git a/mixalot.lisp b/mixalot.lisp
index 53a5545..5fed8ce 100644
--- a/mixalot.lisp
+++ b/mixalot.lisp
@@ -1,691 +1,690 @@
;;;; Mixalot audio mixer for ALSA
;;;; Copyright (c) 2009 Andy Hefner
;;;; Permission is hereby granted, free of charge, to any person obtaining
;;;; a copy of this software and assoc... |
ahefner/mixalot | e8f99ca592f8c9c0eecf463052eaa4f6c6d6b631 | Fix some function names. | diff --git a/sndfile.lisp b/sndfile.lisp
index 499c6fe..d423636 100644
--- a/sndfile.lisp
+++ b/sndfile.lisp
@@ -1,396 +1,396 @@
(defpackage :sndfile
(:use :common-lisp :cffi :mixalot-ffi-common))
(in-package :sndfile)
(define-foreign-library libsndfile
(:unix "libsndfile.so.1")
(t (:default "libsndfile... |
ahefner/mixalot | c701b7477f9d4c7ba67e73207d7566a419fb1272 | Low-level binding to libsndfile. Work in progress. | diff --git a/sndfile.lisp b/sndfile.lisp
new file mode 100644
index 0000000..499c6fe
--- /dev/null
+++ b/sndfile.lisp
@@ -0,0 +1,396 @@
+(defpackage :sndfile
+ (:use :common-lisp :cffi :mixalot-ffi-common))
+
+(in-package :sndfile)
+
+(define-foreign-library libsndfile
+ (:unix "libsndfile.so.1")
+ (t (:default "lib... |
ahefner/mixalot | 75e9c6f07a75ceeeca990b3e134f8280d54a7320 | Clean up mixer, factor common FFI definitions into a new file. | diff --git a/ffi-common.lisp b/ffi-common.lisp
new file mode 100644
index 0000000..5635ab7
--- /dev/null
+++ b/ffi-common.lisp
@@ -0,0 +1,38 @@
+(defpackage :mixalot-ffi-common
+ (:use :cl :cffi)
+ (:export #:size_t
+ #:off_t
+ #:loff_t
+ #:SEEK_SET
+ #:SEEK_CUR
+ #:S... |
ahefner/mixalot | 2b1b0a3fa3be939e6d1d9580486c4a3fecdbdc74 | Added NEWS file. | diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..3c3c75f
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,4 @@
+* Changes in mixalot-0.0.2 relative to mixalot-0.0.2a:
+** Bug fix: Couldn't find libmpg123 or libasound when only installed in /usr/local/lib/ (Isn't CFFI supposed to do the right thing with library search pa... |
ahefner/mixalot | a5b4c2e74f1b753db9729f02fd9e812e27c2bf31 | More robust library location. | diff --git a/mixalot.lisp b/mixalot.lisp
index bae74ba..b64c1f6 100644
--- a/mixalot.lisp
+++ b/mixalot.lisp
@@ -1,594 +1,596 @@
;;;; Mixalot audio mixer for ALSA
;;;; Copyright (c) 2009 Andy Hefner
;;;; Permission is hereby granted, free of charge, to any person obtaining
;;;; a copy of this software and assoc... |
ahefner/mixalot | 56f8b94c3fb82656c75b63a04c451b1b7b65fd51 | Add license note. | diff --git a/doc/mixalot.html b/doc/mixalot.html
index 07c137d..2af79a6 100644
--- a/doc/mixalot.html
+++ b/doc/mixalot.html
@@ -1,913 +1,937 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Mixalot User Manual</title>
<style type="text/css" t... |
ahefner/mixalot | 030a7ab7c256f82e5bbbf772e5c0126f7713b1df | Mixalot version 0.0.2 | diff --git a/doc/mixalot.html b/doc/mixalot.html
index f201872..07c137d 100644
--- a/doc/mixalot.html
+++ b/doc/mixalot.html
@@ -1,920 +1,913 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Mixalot User Manual</title>
<style type="text/css" t... |
ahefner/mixalot | df35b90aaa1692d2cbd9400e5ea07fef23258ee2 | Mixalot version 0.0.1 | diff --git a/doc/.#mixalot.html b/doc/.#mixalot.html
new file mode 120000
index 0000000..a6e328f
--- /dev/null
+++ b/doc/.#mixalot.html
@@ -0,0 +1 @@
+hefner@lightworks.vintagedigital.com.3079:1244954720
\ No newline at end of file
diff --git a/doc/mixalot.html b/doc/mixalot.html
new file mode 100644
index 0000000..f20... |
dirvine/wwww | fb60a7c2f00f48c429e891e7ee29d56e13c06199 | tidy up | diff --git a/.travis.yml b/.travis.yml
index da412eb..8cc1d4f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,32 +1,32 @@
# https://travis-ci.org/dirvine/wwww
language: rust
rust:
- - 1.0.0
-# - nightly
+ - stable
+ - nightly
os:
- linux
- osx
branches:
all:
sudo: required
before_script... |
dirvine/wwww | e6e5c5b499e98745136f582d2df383146b6babf7 | Playing with conrod GUI | diff --git a/Cargo.toml b/Cargo.toml
index 4b3edad..fd0fd51 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,31 @@
[package]
name = "wwww"
version = "0.1.0"
authors = ["David Irvine <david.irvine@maidsafe.net>"]
+repository = "https://github.com/dirvine/self_encryption"
+readme = "README.md"
+license = "GPL-3.0"... |
dirvine/wwww | 0f3d06c6e11aa14254a92912eebd6efe74b199f5 | documentation | diff --git a/src/main.rs b/src/main.rs
index 95471cd..aa4d170 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,18 +1,23 @@
#](https://travis-ci.org/dirvine/wwww)|[
file(GLOB TestFiles *.cc)
foreach(TestFile ${TestFiles} )
get_filename_component(TestName ${TestFile} NAME_WE)
add_execu... |
dirvine/wwww | f250d8dbecc7beaa4486ea3b960d3b48005045e3 | include tests | diff --git a/.travis.yml b/.travis.yml
index 32c3afe..fc4d4db 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,33 +1,33 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
# - clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:h-... |
dirvine/wwww | a9792ae0a089e83533da116923d3b335aeea51de | make test works | diff --git a/CMakeLists.txt b/CMakeLists.txt
index 00ea8ea..1f155d9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,180 +1,174 @@
project(wwww)
cmake_minimum_required(VERSION 2.8.6)
set(wwww_VERSION_MAJOR 0)
set(wwww_VERSION_MINOR 0)
set(wwww_VERSION_PATCH 1)
set(wwww_VERSION
"${wwww_VERSION_MAJOR... |
dirvine/wwww | f6da6a5d0b9cc2c1c36119c39da3175f8e2a6269 | Travis | diff --git a/.travis.yml b/.travis.yml
index 7027204..32c3afe 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,33 +1,33 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
# - clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:h-... |
dirvine/wwww | 139e1c16195e8485878f7acbbf9daa4e18b42e8d | travis - ignore clang till 3.5 works | diff --git a/.travis.yml b/.travis.yml
index a7074d1..7027204 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,33 +1,33 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- - clang
+# - clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-reposi... |
dirvine/wwww | fc7c9bce9c8514587c5f361ef6e5b6b86d3c55fa | travis - ignore clang till 3.5 works | diff --git a/.travis.yml b/.travis.yml
index 7027204..a7074d1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,33 +1,33 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
-# - clang
+ - clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-reposi... |
dirvine/wwww | f5bbbf5bc1901baca64c4be227c48706ef165537 | travis - ignore clang till 3.5 works | diff --git a/.travis.yml b/.travis.yml
index f566294..7027204 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,33 +1,33 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- - clang
+# - clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-reposi... |
dirvine/wwww | 24c192fe1a605af85f93b31e48b98d96099e16c4 | travis | diff --git a/.travis.yml b/.travis.yml
index 15a88a9..f566294 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,33 +1,33 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:h-r... |
dirvine/wwww | e4588dbfeb3869402cabd3cdac4874b36d6ac634 | travis - add clang ppa | diff --git a/.travis.yml b/.travis.yml
index cdccffe..15a88a9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,38 +1,33 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+ - sudo add-apt-repository ppa:h-r... |
dirvine/wwww | 656052f722f9015cb19a1a43d8e20a42effdf892 | travis - add clang ppa | diff --git a/.travis.yml b/.travis.yml
index 56c356f..807df78 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,35 +1,35 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:h-r... |
dirvine/wwww | 144bb410b43295ae02bc2ce94114a3988453724c | travis - add clang ppa | diff --git a/.travis.yml b/.travis.yml
index 00775d1..56c356f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,35 +1,35 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:h-r... |
dirvine/wwww | ed25e4d433b6d0d0a45827096e4c056e0b895207 | travis - add clang ppa | diff --git a/.travis.yml b/.travis.yml
index e6c18e8..00775d1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,35 +1,35 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:h-r... |
dirvine/wwww | 05967273d466b08d871c7a5342992279105cae3f | travis - add clang ppa | diff --git a/.travis.yml b/.travis.yml
index 95e8807..e6c18e8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,35 +1,35 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:h-r... |
dirvine/wwww | a25fdc5f3f1dfaa2444b2c8d68b8150bbe7a3018 | travis - add clang ppa | diff --git a/.travis.yml b/.travis.yml
index 19283a8..95e8807 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,34 +1,35 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+ - sudo add-apt-repository ppa:h-r... |
dirvine/wwww | 60b7bf3757dfb4eb0dd002487976ef10136f2a14 | travis | diff --git a/.travis.yml b/.travis.yml
index 86f438e..19283a8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,38 +1,34 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 725873d57e69bdbb4a641f1e0c193425fe4992c8 | travis | diff --git a/.travis.yml b/.travis.yml
index 13d01e3..86f438e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,38 +1,38 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 312f8be3e97cd74f6e1b61fce8a0d4ac2360c211 | travis | diff --git a/.travis.yml b/.travis.yml
index dc08aa8..13d01e3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,38 +1,38 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 8d59a84b9a5aedd4bd6e68e34a51f8f8a84484aa | fix non coverity builds | diff --git a/.travis.yml b/.travis.yml
index cdccffe..dc08aa8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,38 +1,38 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 92790a907f6dc9bf05b14a176f7792c6ec10d19f | changed model file (needs to have a .cpp extension) | diff --git a/etc/coverity/model.cpp b/etc/coverity/model.cpp
new file mode 100644
index 0000000..b2efe61
--- /dev/null
+++ b/etc/coverity/model.cpp
@@ -0,0 +1,9 @@
+/* This is free and unencumbered software released into the public domain. */
+
+/**
+ * @file
+ *
+ * Coverity Scan model for wwww.
+ *
+ * @see https://s... |
dirvine/wwww | 61d5b4487ff1496cb17cb180fcae5b5abbfef5ef | Added coverity model file | diff --git a/etc/coverity/model.cc b/etc/coverity/model.cc
new file mode 100644
index 0000000..b2efe61
--- /dev/null
+++ b/etc/coverity/model.cc
@@ -0,0 +1,9 @@
+/* This is free and unencumbered software released into the public domain. */
+
+/**
+ * @file
+ *
+ * Coverity Scan model for wwww.
+ *
+ * @see https://scan... |
dirvine/wwww | ec71655cb9ce8cc3ea528185c7c6f4b793dd06d5 | install clang-3.5 | diff --git a/.travis.yml b/.travis.yml
index 9bb855e..b43c8d0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,38 +1,38 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 3f4f59a8a9dbbfb09dcdb1d5d165e6e14c91dd80 | this must be it | diff --git a/.travis.yml b/.travis.yml
index 5e06cde..9bb855e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,37 +1,38 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 9f0e163c2d138ba36e812f86b6e2ab2aa5d0e7a6 | more cov again | diff --git a/.travis.yml b/.travis.yml
index 533a6a6..359dfcd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,37 +1,37 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | f909427097f8630ee04f869876c048b6446e9503 | More cov | diff --git a/.travis.yml b/.travis.yml
index 3368a85..533a6a6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,37 +1,37 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | feed50336a93a8806fdbf9f62d86fb74867188e4 | coverity again | diff --git a/.travis.yml b/.travis.yml
index 884a174..3368a85 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,37 +1,37 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 9ba986a0171e346e17a91555b1b1df5de8195a2c | even more coverity | diff --git a/.travis.yml b/.travis.yml
index b2a2524..884a174 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,37 +1,37 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 03624e65198fae3b84d4abe4ca5635a32fd6098a | more coverity | diff --git a/.travis.yml b/.travis.yml
index 1eccc85..b2a2524 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,37 +1,37 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 1259f0b398d20793a564ec60fb5fe79dbd21c74b | coverity | diff --git a/.travis.yml b/.travis.yml
index 8e84a71..1eccc85 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,37 +1,37 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | af8526b0aadca1b1e200f14fc8da4fed6e0406d6 | more yaml | diff --git a/.travis.yml b/.travis.yml
index 56c9740..2e6d9c1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,35 +1,36 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 2cbb78f3bd2bbdb43062b80a1ead1c7cb08f0370 | yaml troubles | diff --git a/.travis.yml b/.travis.yml
index 31b3ea2..56c9740 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,35 +1,35 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | 8f678160b3a92f1430b0d8037facf812533aa191 | integration testing | diff --git a/README.rst b/README.rst
index 4dab284..75511b0 100644
--- a/README.rst
+++ b/README.rst
@@ -1,22 +1,22 @@
-.. image:: https://api.travis-ci.org/datagraph/librdf.svg?branch=master
- :target: https://travis-ci.org/datagraph/librdf
+.. image:: https://api.travis-ci.org/dirvine/wwww.svg?branch=master
+ :ta... |
dirvine/wwww | 60c85b3b13b70d672477bf6c4c69d6918c8f8046 | Yaml fix | diff --git a/.travis.yml b/.travis.yml
index 99036eb..31b3ea2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,35 +1,35 @@
# https://travis-ci.org/dirvine/wwww
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- su... |
dirvine/wwww | c1f2d145a465c57b2557e6aea04077a90b1966c8 | Integrate travis and dron.io CI tests + coverity project scan | diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..283a000
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,35 @@
+# https://travis-ci.org/datagraph/librdf
+language: cpp
+compiler:
+ - clang
+ - gcc
+before_install:
+ - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+ - sudo apt-get updat... |
dirvine/wwww | 4f09ea030ee8b5c898aef023c46e74893f302142 | playing about with mp_math | diff --git a/src/factorial.cc b/src/factorial.cc
new file mode 100644
index 0000000..a9e244d
--- /dev/null
+++ b/src/factorial.cc
@@ -0,0 +1,20 @@
+#include <iostream>
+#include "boost/mp_math/mp_int.hpp"
+
+typedef boost::mp_math::mp_int<> BigInt;
+
+BigInt factorial(BigInt n) {
+ if (n<=1){
+ return n;
+ } else {
+ ... |
dirvine/wwww | 5753e01568872a830c1196418f235d9ab5231262 | yip it will be a cmake controlled project. I will create and commit Makefiles in the build dirs though | diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..8a5246a
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,20 @@
+cmake_minimum_required(VERSION 2.6)
+project (wwww)
+#this needs to be at the top of the file
+MESSAGE ("##############################################")
+IF(NOT CMAKE_GEN)
+ ME... |
dirvine/wwww | 3f2630d7e3c8460ef97f8c6e44c8bf99d7ee625d | adding some changes to the text, typo's arghhh! | diff --git a/README b/README
index 676e773..0aad8d4 100644
--- a/README
+++ b/README
@@ -1,3 +1,3 @@
-OK this is a bit weird but the intent here is to analyse some ideas about creating self learning system and using a distributed hash table and soem intelligence to achive sentience :-)
+OK this is a bit weird but the ... |
dirvine/wwww | becdb125f5c90e4adc8182ca4c6c5709a92cbd56 | adding project structure | diff --git a/src/gui/README b/src/gui/README
new file mode 100644
index 0000000..8178c76
--- /dev/null
+++ b/src/gui/README
@@ -0,0 +1 @@
+readme
|
dirvine/wwww | ef5ecc7fdf99369711c2f7ac72e805dd5dc6c756 | Added a wee smidgen of text | diff --git a/README b/README
index e69de29..676e773 100644
--- a/README
+++ b/README
@@ -0,0 +1,3 @@
+OK this is a bit weird but the intent here is to analyse some ideas about creating self learning system and using a distributed hash table and soem intelligence to achive sentience :-)
+
+It can be done, just don't kn... |
dirvine/wwww | d541403a8ffd27a346ba2182e957cb49a9d03ff7 | just a blank readme for now | diff --git a/README b/README
new file mode 100644
index 0000000..e69de29
|
freerobby/kitchenbrewer | 24935c97137b6e9f5fb0b40dfae01d35a90ad1e9 | Remove HTTP Basic authentication. | diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 31c666f..7464caf 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -1,53 +1,45 @@
class ApplicationController < ActionController::Base
helper :all
helpe... |
freerobby/kitchenbrewer | 09106fd7f96574677c70b7364cffb29ca149ac45 | Security audit: verify all users are bound by assumed permissions. | diff --git a/.gems b/.gems
index 5b5812b..ca3e813 100644
--- a/.gems
+++ b/.gems
@@ -1,6 +1,8 @@
+acl9
authlogic
calendar_date_select
+hoptoad_notifier
kete-tiny_mce --source gems.github.com
repeated_auto_complete
searchlogic
will_paginate
\ No newline at end of file
diff --git a/app/controllers/application_contr... |
freerobby/kitchenbrewer | 63113b489237ddb4a543d025e2e7c6f0357b1059 | Implement recipe database. | diff --git a/.gems b/.gems
index 8bc3855..5b5812b 100644
--- a/.gems
+++ b/.gems
@@ -1,4 +1,6 @@
authlogic
calendar_date_select
-hoptoad_notifier
-kete-tiny_mce --source gems.github.com
\ No newline at end of file
+kete-tiny_mce --source gems.github.com
+repeated_auto_complete
+searchlogic
+will_paginate
\ No newline... |
freerobby/kitchenbrewer | 9e81cbf0654215f48ac989ba43baee362d4b01d4 | Install Hoptoad. | diff --git a/.gems b/.gems
index 0430da2..8bc3855 100644
--- a/.gems
+++ b/.gems
@@ -1,3 +1,4 @@
authlogic
calendar_date_select
+hoptoad_notifier
kete-tiny_mce --source gems.github.com
\ No newline at end of file
diff --git a/config/environment.rb b/config/environment.rb
index 0915f7a..7670005 100644
--- a/config/en... |
freerobby/kitchenbrewer | 66c24ff7b8d451da4f54890cefce9cc61557a810 | Delete brew notes via ajax. | diff --git a/app/controllers/brewnotes_controller.rb b/app/controllers/brewnotes_controller.rb
index 62427f9..7b43442 100644
--- a/app/controllers/brewnotes_controller.rb
+++ b/app/controllers/brewnotes_controller.rb
@@ -1,29 +1,32 @@
class BrewnotesController < ApplicationController
uses_tiny_mce
before_filter ... |
freerobby/kitchenbrewer | ad81f615dc0a407b63d86bd66b2fc34d666f24fc | Grab o.g. automatically from brewnotes. | diff --git a/app/models/brewnote.rb b/app/models/brewnote.rb
index 1c2c219..3cff8b9 100644
--- a/app/models/brewnote.rb
+++ b/app/models/brewnote.rb
@@ -1,17 +1,24 @@
class Brewnote < ActiveRecord::Base
belongs_to :brew
validates_presence_of :brew
validates_presence_of :body
validates_presence_of :reco... |
freerobby/kitchenbrewer | ba6b46dd9530cba04603adf8e93b0caaba045e2a | Fix brewnotes timezone mismatch by extending calendar_date_select to support time zones. | diff --git a/app/views/brewnotes/edit.html.erb b/app/views/brewnotes/edit.html.erb
index b916d68..c0342cd 100644
--- a/app/views/brewnotes/edit.html.erb
+++ b/app/views/brewnotes/edit.html.erb
@@ -1,22 +1,22 @@
<div style="width: 500px;">
<h2>Edit Note</h2>
<% form_for @brewnote do |f| %>
<%= f.error_messages %... |
freerobby/kitchenbrewer | 0fe6a7f29ba5b045ee6cd999e1981389802a359d | Ensure consistent usage of timezones. | diff --git a/app/views/brewnotes/edit.html.erb b/app/views/brewnotes/edit.html.erb
index 43c0dfc..b916d68 100644
--- a/app/views/brewnotes/edit.html.erb
+++ b/app/views/brewnotes/edit.html.erb
@@ -1,22 +1,22 @@
<div style="width: 500px;">
<h2>Edit Note</h2>
<% form_for @brewnote do |f| %>
<%= f.error_messages %... |
freerobby/kitchenbrewer | 0ef8f91b4420db04bd608c81136d651dcce599d1 | Order brewnotes chronologically. | diff --git a/app/models/brewnote.rb b/app/models/brewnote.rb
index 690b247..1c2c219 100644
--- a/app/models/brewnote.rb
+++ b/app/models/brewnote.rb
@@ -1,15 +1,17 @@
class Brewnote < ActiveRecord::Base
belongs_to :brew
validates_presence_of :brew
validates_presence_of :body
validates_presence_of :reco... |
freerobby/kitchenbrewer | 71b27beca57b96f01995ff5ecb240ad1f17de3f1 | Let user specify date/time on brewnotes. | diff --git a/app/views/brewnotes/edit.html.erb b/app/views/brewnotes/edit.html.erb
index 441f5d2..43c0dfc 100644
--- a/app/views/brewnotes/edit.html.erb
+++ b/app/views/brewnotes/edit.html.erb
@@ -1,20 +1,22 @@
<div style="width: 500px;">
<h2>Edit Note</h2>
<% form_for @brewnote do |f| %>
<%= f.error_messages %... |
freerobby/kitchenbrewer | da576a9edf91aba787aead3d3f69c323d6a2468a | Confirm email addresses. | diff --git a/README b/README
index 37ec8ea..ae6880a 100644
--- a/README
+++ b/README
@@ -1,243 +1,5 @@
-== Welcome to Rails
+KitchenBrewer is a social web app for homebrewers. It is built to run on heroku.
-Rails is a web-application framework that includes everything needed to create
-database-backed web applicatio... |
freerobby/kitchenbrewer | d16dc1b1c0349544c5ea0635f2e33f7a64c80cf0 | Move signin/logout links out of main navbar. | diff --git a/app/views/layouts/_session_status.erb b/app/views/layouts/_session_status.erb
index 0ccf734..cbbe820 100644
--- a/app/views/layouts/_session_status.erb
+++ b/app/views/layouts/_session_status.erb
@@ -1,7 +1,18 @@
-<p id="top">
+<div id="top">
<% if current_user %>
- Hi there, <%= link_to current_user... |
freerobby/kitchenbrewer | a551657089f6a6b0a3637a36f9372aa454bdae8c | Add signup form to welcome page. | diff --git a/app/views/pages/welcome.html.erb b/app/views/pages/welcome.html.erb
index eef47c7..ebd0951 100644
--- a/app/views/pages/welcome.html.erb
+++ b/app/views/pages/welcome.html.erb
@@ -1,27 +1,51 @@
<div id="pitch">
<h1>
Homebrewing meets social media
</h1>
- <h2>
+ <p>
KitchenBrewer is a resource ... |
freerobby/kitchenbrewer | 86d60d53a04f1efbe96957e216248023e0675acc | Add field for user's nickname. | diff --git a/app/models/user.rb b/app/models/user.rb
index f459e7f..146b4d2 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -1,5 +1,9 @@
class User < ActiveRecord::Base
- acts_as_authentic do |config|
- # config.validate_email_field false
+ acts_as_authentic
+ before_save :guess_nickname_if_blank
+ ... |
freerobby/kitchenbrewer | df5f088dcc7ed36e8dfbf74fe2f6c38b8d541577 | Install a site theme. | diff --git a/.gitignore b/.gitignore
index d54fc81..09bea69 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
log/
-*.sqlite3
\ No newline at end of file
+*.sqlite3
+.DS_Store
\ No newline at end of file
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index ee1... |
freerobby/kitchenbrewer | 45df67cd076da8b99d4ad3d792abe56b8c764a11 | Implement new user signup. | diff --git a/.gems b/.gems
new file mode 100644
index 0000000..c66edb2
--- /dev/null
+++ b/.gems
@@ -0,0 +1 @@
+authlogic
\ No newline at end of file
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 6635a3f..ee16bcb 100644
--- a/app/controllers/application_control... |
freerobby/kitchenbrewer | 7962af8be0fba361ed3c88e20d4b408f56dee405 | Install RSpec. | diff --git a/lib/tasks/rspec.rake b/lib/tasks/rspec.rake
new file mode 100644
index 0000000..dba3ffc
--- /dev/null
+++ b/lib/tasks/rspec.rake
@@ -0,0 +1,144 @@
+gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
+rspec_gem_dir = nil
+Dir["#{RAILS_ROOT}/vendor/gems/*"].each do |subdir|
+ rspec_gem_dir = subdir if sub... |
calca/Mum | e8e590b871af45a42bd5749c21e97df237fc25b2 | Aggiornamento info e riferimenti | diff --git a/src/GPL.txt b/src/GPL.txt
index 99ab0b4..7cb6861 100755
--- a/src/GPL.txt
+++ b/src/GPL.txt
@@ -1,28 +1,28 @@
/*
* , ,
* / \
* ((__-^^-,-^^-__))
* `-_---' `---_-'
* `--|o` 'o|--'
* \ ` /
* ): :(
* :o_o:
* ... |
calca/Mum | cc68e5ca0f1cbb1d932705a3b283721609ca42f0 | Permission | diff --git a/images/mum-2.jpg b/images/mum-2.jpg
old mode 100644
new mode 100755
diff --git a/images/mum-3.png b/images/mum-3.png
old mode 100644
new mode 100755
diff --git a/images/mum-ico.xcf b/images/mum-ico.xcf
old mode 100644
new mode 100755
diff --git a/images/mum-preview.wxg b/images/mum-preview.wxg
old mode 100... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.