repo string | commit string | message string | diff string |
|---|---|---|---|
mattetti/googlecharts | 6217011c86bb668a807c80cf6abf3fe693417526 | separate labels and legends for pies | diff --git a/lib/gchart.rb b/lib/gchart.rb
index ac9e2e6..c2f4d95 100644
--- a/lib/gchart.rb
+++ b/lib/gchart.rb
@@ -1,687 +1,687 @@
$:.unshift File.dirname(__FILE__)
require 'gchart/version'
require 'gchart/theme'
require "net/http"
require "uri"
require "cgi"
require 'enumerator'
class Gchart
include Gch... |
mattetti/googlecharts | fdbbff60843e06b81860ee2e0cbc37367ed34124 | bumped the version | diff --git a/VERSION b/VERSION
index afaf360..fdd3be6 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.0.0
\ No newline at end of file
+1.6.2
diff --git a/lib/gchart/version.rb b/lib/gchart/version.rb
index 524cab3..f2cbe72 100644
--- a/lib/gchart/version.rb
+++ b/lib/gchart/version.rb
@@ -1,9 +1,9 @@
module GchartIn... |
mattetti/googlecharts | 7e8cc2457c6812fbac800e3610ea01963ca56453 | Version bump to 1.0.0 | diff --git a/VERSION b/VERSION
index bd52db8..afaf360 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.0.0
\ No newline at end of file
+1.0.0
\ No newline at end of file
|
mattetti/googlecharts | 48a27f59628547d5357fccd4c14df478b234b1ca | Version bump to 0.0.0 | diff --git a/VERSION b/VERSION
index 9dbb0c0..bd52db8 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.7.0
\ No newline at end of file
+0.0.0
\ No newline at end of file
|
mattetti/googlecharts | 55265f0844d0f7f0ed97f04dda39dfe80de52908 | Version bump to 1.7.0 | diff --git a/VERSION b/VERSION
index 9c6d629..9dbb0c0 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.6.1
+1.7.0
\ No newline at end of file
|
mattetti/googlecharts | 09633d67b831e88ce27aed7cb2c015e5dc0c159a | added test | diff --git a/spec/gchart_spec.rb b/spec/gchart_spec.rb
index ee2f4e2..cd16ab7 100644
--- a/spec/gchart_spec.rb
+++ b/spec/gchart_spec.rb
@@ -1,650 +1,655 @@
require File.dirname(__FILE__) + '/spec_helper.rb'
require File.dirname(__FILE__) + '/../lib/gchart'
Chart::Theme.add_theme_file("#{File.dirname(__FILE__)}/fi... |
mattetti/googlecharts | 3ab82e7865163bec3e2442c289876f2a9dd6abd3 | restored labels based on official docs | diff --git a/googlecharts.gemspec b/googlecharts.gemspec
index 051910b..d940f2e 100644
--- a/googlecharts.gemspec
+++ b/googlecharts.gemspec
@@ -1,76 +1,76 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::... |
mattetti/googlecharts | 87574fe3d1ad1238bd7f250a6fa7906187f64f95 | Regenerate gemspec for version 1.6.1 | diff --git a/googlecharts.gemspec b/googlecharts.gemspec
new file mode 100644
index 0000000..051910b
--- /dev/null
+++ b/googlecharts.gemspec
@@ -0,0 +1,76 @@
+# Generated by jeweler
+# DO NOT EDIT THIS FILE DIRECTLY
+# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
+# -*- encoding: utf-8 -*-
+
+Gem::... |
mattetti/googlecharts | df1cd847d071ccb6ada204211f947c1a88b1c752 | Revert "Version bump to 0.0.0" | diff --git a/VERSION b/VERSION
index bd52db8..9c6d629 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.0.0
\ No newline at end of file
+1.6.1
|
mattetti/googlecharts | be4d34570d95fd347393c93e2e7443d3bc4af6a6 | Version bump to 0.0.0 | diff --git a/VERSION b/VERSION
index 9c6d629..bd52db8 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.6.1
+0.0.0
\ No newline at end of file
|
mattetti/googlecharts | 2df36211ae21cb43c9f82e647c97f2ce2e98465f | fixed axis label bugs, updated the specs and added some more documentation | diff --git a/README.markdown b/README.markdown
index 5e9d00a..399ea4a 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1,296 +1,325 @@
The goal of this Gem is to make the creation of Google Charts a simple and easy task.
-
+
+ require 'googlecharts'
Gchart.line( :size => '200x300',
... |
mattetti/googlecharts | f577da91e200c0fe7aa3c6d535fb2fc74f39d758 | Added usemap option to img tag | diff --git a/lib/gchart.rb b/lib/gchart.rb
index c922a81..da98b7c 100644
--- a/lib/gchart.rb
+++ b/lib/gchart.rb
@@ -1,685 +1,686 @@
$:.unshift File.dirname(__FILE__)
require 'gchart/version'
require 'gchart/theme'
require "net/http"
require "uri"
require "cgi"
require 'enumerator'
class Gchart
include Gch... |
mattetti/googlecharts | b52e2f35cf986e6984c7d54a168caeed2d61fab5 | Added alias "slice_colors" | diff --git a/lib/gchart/aliases.rb b/lib/gchart/aliases.rb
index 0669a30..2ca75fb 100644
--- a/lib/gchart/aliases.rb
+++ b/lib/gchart/aliases.rb
@@ -1,15 +1,16 @@
class Gchart
alias_method :background=, :bg=
alias_method :chart_bg=, :graph_bg=
alias_method :chart_color=, :graph_bg=
alias_method :chart_... |
mattetti/googlecharts | bbad68d74dce1eba6b75cdd7539d8bc2322fe023 | Remove redundant #size method | diff --git a/lib/gchart.rb b/lib/gchart.rb
index 3160634..c922a81 100644
--- a/lib/gchart.rb
+++ b/lib/gchart.rb
@@ -1,619 +1,615 @@
$:.unshift File.dirname(__FILE__)
require 'gchart/version'
require 'gchart/theme'
require "net/http"
require "uri"
require "cgi"
require 'enumerator'
class Gchart
include Gch... |
mattetti/googlecharts | b4d0aa1bdc72f8689167a0d8b16511270233e4a4 | Fix Gchart.supported_types to work right | diff --git a/lib/gchart.rb b/lib/gchart.rb
index 5995818..3160634 100644
--- a/lib/gchart.rb
+++ b/lib/gchart.rb
@@ -1,608 +1,607 @@
$:.unshift File.dirname(__FILE__)
require 'gchart/version'
require 'gchart/theme'
require "net/http"
require "uri"
require "cgi"
require 'enumerator'
class Gchart
include Gch... |
mattetti/googlecharts | e9c7cee7f50e842391f428690e481fe09af68db2 | Removed unused 'count' variable | diff --git a/lib/gchart.rb b/lib/gchart.rb
index 7111703..5995818 100644
--- a/lib/gchart.rb
+++ b/lib/gchart.rb
@@ -1,691 +1,690 @@
$:.unshift File.dirname(__FILE__)
require 'gchart/version'
require 'gchart/theme'
require "net/http"
require "uri"
require "cgi"
require 'enumerator'
class Gchart
include Gch... |
mattetti/googlecharts | f623f28c6cfb5ade2e46101f4b0d80486ea649ee | Use URI.escape in jstize | diff --git a/lib/gchart.rb b/lib/gchart.rb
index df41c8b..7111703 100644
--- a/lib/gchart.rb
+++ b/lib/gchart.rb
@@ -1,689 +1,691 @@
$:.unshift File.dirname(__FILE__)
require 'gchart/version'
require 'gchart/theme'
require "net/http"
require "uri"
require "cgi"
require 'enumerator'
class Gchart
include Gch... |
mattetti/googlecharts | aa2d58aeaa26b6cb6a15dd487d1b202ff1d37399 | doc patch for #issue/2 | diff --git a/README.markdown b/README.markdown
index 7ef926d..5e9d00a 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1,295 +1,296 @@
The goal of this Gem is to make the creation of Google Charts a simple and easy task.
Gchart.line( :size => '200x300',
:title => "example title",
... |
mattetti/googlecharts | 0eaa3379e66f74ba909ab9b5831cfd6ad615e703 | change from spec to rspec | diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index f1ca062..aa8a18e 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,7 +1,7 @@
begin
- require 'spec'
+ require 'rspec'
rescue LoadError
require 'rubygems'
gem 'rspec'
- require 'spec'
-end
\ No newline at end of file
+ require 'rspec... |
mattetti/googlecharts | 6c557e07eb934548e1a2ae81a8382d4cd435b593 | Version bump to 1.6.1 | diff --git a/VERSION b/VERSION
index dc1e644..9c6d629 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.6.0
+1.6.1
|
mattetti/googlecharts | e51a17f00cd80742b04ddee8cc9f0d86707415d2 | support missing (nil) data values for text encoding | diff --git a/lib/gchart.rb b/lib/gchart.rb
index 3f7f4d3..df41c8b 100644
--- a/lib/gchart.rb
+++ b/lib/gchart.rb
@@ -107,583 +107,583 @@ class Gchart
end
def size
"#{width}x#{height}"
end
def dimensions
# TODO: maybe others?
[:line_xy, :scatter].include?(type) ? 2 : 1
end
# Sets... |
mattetti/googlecharts | dce6be668c409b8a71ad871d5f30accb5d5c2bc0 | Version bump to 1.6.0 | diff --git a/VERSION b/VERSION
index 94fe62c..dc1e644 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.5.4
+1.6.0
|
mattetti/googlecharts | 7ae5dbd6c6e843d55819c5ca6aec5fc457fb1d32 | add radar example | diff --git a/README.markdown b/README.markdown
index 1361a29..7ef926d 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1,290 +1,295 @@
The goal of this Gem is to make the creation of Google Charts a simple and easy task.
Gchart.line( :size => '200x300',
:title => "example title",
... |
mattetti/googlecharts | f24f3f3fa1e7ecd6a0f51af4b10d051f52c4288f | axis labeling arrrays edge cases | diff --git a/lib/gchart.rb b/lib/gchart.rb
index 223e7ec..3f7f4d3 100644
--- a/lib/gchart.rb
+++ b/lib/gchart.rb
@@ -1,688 +1,689 @@
$:.unshift File.dirname(__FILE__)
require 'gchart/version'
require 'gchart/theme'
require "net/http"
require "uri"
require "cgi"
require 'enumerator'
class Gchart
include Gch... |
mattetti/googlecharts | 3dccca9edb847977a698fca69c2fc92813c5f473 | add radius chart with curved option | diff --git a/lib/gchart.rb b/lib/gchart.rb
index 1e62fde..223e7ec 100644
--- a/lib/gchart.rb
+++ b/lib/gchart.rb
@@ -1,697 +1,688 @@
$:.unshift File.dirname(__FILE__)
require 'gchart/version'
require 'gchart/theme'
require "net/http"
require "uri"
require "cgi"
require 'enumerator'
class Gchart
include Gch... |
mattetti/googlecharts | 75b8f097adbc3c2e87e01d64f272ecdc663d79e1 | Replace hard-coded class name with reflection | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b7a1d91
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+.DS_Store
+log/*
+.manifest
+pkg
\ No newline at end of file
diff --git a/History.txt b/History.txt
new file mode 100644
index 0000000..7ce5afc
--- /dev/null
+++ b/History.txt
@@ -0,0 +1,48 @... |
stanislauslive/StanMarket | a223657bc617b538a735a146c00b8cfb408892f5 | Add define('JQUERY_MENU', 'jd_menu'); ( which will be moved into the database ) has 2 values currently: jd_menu or accordion At bottom of code try them both to see which you'd prefer | diff --git a/oscmall_pub/mall_admin/includes/application_top.php b/oscmall_pub/mall_admin/includes/application_top.php
index 9651ded..8e44e30 100644
--- a/oscmall_pub/mall_admin/includes/application_top.php
+++ b/oscmall_pub/mall_admin/includes/application_top.php
@@ -1,365 +1,369 @@
<?php
/*
Copyright (c) 2002 - ... |
nullset/digitalvision-patch | fdabadf6e73f314921bb386249a25f2757d8c901 | Compare script, and db results | diff --git a/digitalvision.rb b/digitalvision.rb
index 13b1e18..c16b040 100644
--- a/digitalvision.rb
+++ b/digitalvision.rb
@@ -1,140 +1,196 @@
require 'rubygems'
require 'find'
require 'digest/md5'
# require 'open-uri'
require 'typhoeus'
+require 'carrot'
require 'cgi'
require 'active_record'
ActiveRecord::... |
nullset/digitalvision-patch | afff3bcf9e71dae1c3cd14154c5d58e67135e88c | Typhoeus working. | diff --git a/digitalvision.rb b/digitalvision.rb
index 19a0f50..13b1e18 100644
--- a/digitalvision.rb
+++ b/digitalvision.rb
@@ -1,131 +1,140 @@
require 'rubygems'
require 'find'
require 'digest/md5'
-require 'open-uri'
+# require 'open-uri'
+require 'typhoeus'
require 'cgi'
require 'active_record'
ActiveRecord... |
dny/as-lin-eye | a9f8a194fe32c2dad15138345c4675b7c81290a1 | ist jetzt unter BSD lizenz! | diff --git a/eye-linkinus.txt b/eye-linkinus.txt
index e0624f1..36b30eb 100644
--- a/eye-linkinus.txt
+++ b/eye-linkinus.txt
@@ -1,11 +1,12 @@
(*
-Lizenzding
+Lizenzding
+This script is under BSD-License
*)
on linkinuscmd()
tell application "EyeTV"
activate
channel_change channel number 6
volume_change l... |
dny/as-lin-eye | 4fcb882d3957dd0e3264676e77a15fc845096b89 | das is jetz auf github | diff --git a/eye-linkinus.txt b/eye-linkinus.txt
new file mode 100644
index 0000000..e0624f1
--- /dev/null
+++ b/eye-linkinus.txt
@@ -0,0 +1,11 @@
+(*
+Lizenzding
+*)
+on linkinuscmd()
+ tell application "EyeTV"
+ activate
+ channel_change channel number 6
+ volume_change level 0.5
+ end tell
+ return / dev / null
+... |
dny/as-lin-eye | 69b930aa0ca27e27630969d1e187956ff300d88a | first comit | diff --git a/README b/README
new file mode 100644
index 0000000..e69de29
|
BastyCDGS/ffmpeg-soc | d2a4571e14a7ac952eb016b1f051f91462efb3f2 | modifié : libavsequencer/player.c | diff --git a/libavcodec/x86/h264_qpel_mmx.c b/libavcodec/x86/h264_qpel_mmx.c
index d8ceca1..f5af44e 100644
--- a/libavcodec/x86/h264_qpel_mmx.c
+++ b/libavcodec/x86/h264_qpel_mmx.c
@@ -1,1201 +1,1201 @@
/*
* Copyright (c) 2004-2005 Michael Niedermayer, Loren Merritt
*
* This file is part of FFmpeg.
*
* FFmpe... |
BastyCDGS/ffmpeg-soc | ed46d8417a37d98a8110dd25c4645363fcb07251 | Fixed portamento memory handling for fine portamento once up and down and clarified variable name. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index 4fc7c59..d07d277 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -1,900 +1,900 @@
/*
* Sequencer main playback handler
* Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com>
*
* This file is part of FFmpeg.
*... |
BastyCDGS/ffmpeg-soc | 065cba7ae97c19e4702e652ccf140e28c8923a42 | Optimized null, low and high quality mixers of AVSequencer in initial mixing call. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 15eab6d..ccb1a62 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -6685,627 +6685,615 @@ static av_cold uint32_t set_rate(AVMixerData *const mixer_data,
if (hq_mixer_data->mix_rate != old_mix_rate) {
... |
BastyCDGS/ffmpeg-soc | 1afabda395a4e1536a9716e402f5dda60079e646 | Fixed some nits in low and high quality mixer apply (resonance) filter code of AVSequencer. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 92b82f5..15eab6d 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1,671 +1,669 @@
/*
* Sequencer high quality integer mixer
* Copyright (c) 2011 Sebastian Vater <cdgs.basty@googlemail.com>
*
* This file is part o... |
BastyCDGS/ffmpeg-soc | 7e26df0577b2cc2a0fd9c0ec63b54f82cf0d695e | Constify and optimize of low and high quality mixer (resonance) filter. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 38d8046..92b82f5 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1,668 +1,668 @@
/*
* Sequencer high quality integer mixer
* Copyright (c) 2011 Sebastian Vater <cdgs.basty@googlemail.com>
*
* This file is part o... |
BastyCDGS/ffmpeg-soc | 132e4eae8c2b6a1ba2fcc29fa54c1e38c3c7fa85 | Cleaned up nits in high quality mixer. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 8c0de0b..916e735 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -3310,3551 +3310,2460 @@ static int32_t get_backwards_sample_1_16(const AV_HQMixerData *const mixer_data,
} else {
offset += r... |
BastyCDGS/ffmpeg-soc | 1c6596f5b0ab9eae18ff9615a032ab2eda462b67 | Fixed sign comparision of high quality mixer backward looping calculation on average sample looping. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index da13f81..8c0de0b 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -2031,2122 +2031,2122 @@ static void get_backwards_next_sample_32(const AV_HQMixerData *const mixer_data,
get_backwards_next_sa... |
BastyCDGS/ffmpeg-soc | 1f8f0598748e07d70649e87323b0f0a82d742dc9 | Fixed one shoot counter in all AVSequencer mixers so it is updated upon different channel flags also. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index f5b7202..e26328c 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -7736,681 +7736,682 @@ static av_cold uint32_t set_tempo(AVMixerData *const mixer_data,
hq_mixer_data->pass_len_frac = (((uint64_t) pass_value % hq_... |
BastyCDGS/ffmpeg-soc | 99acabed62a4ebe343728f436033ee887058b62c | Fixed NNA same channel allocation in AVSequencer player when tremor was turning off note at that point. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index 8e92af7..029e0bd 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -8818,1025 +8818,1025 @@ static const AVSequencerPlayerEffects fx_lut[128] = {
{set_synth_value, NULL, NULL, ... |
BastyCDGS/ffmpeg-soc | 92be11e81e2fbd0c3ead8654e4e869332c484fb8 | Fixed segfault in high quality mixer occuring on full right panned mixing. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 0c1af7a..f5b7202 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -4086,1440 +4086,1452 @@ MIX(mono_backwards_32)
struct AV_HQMixerChannelInfo *const channel_info,
... |
BastyCDGS/ffmpeg-soc | 7dfb86fa457acdf6bdc22b84a2f9d1d08cf2b289 | Fixed some nits, track, as well as global pannolo and synth sound SETWAVP instruction in AVSequencer player for new S3M compatibility. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index 1089b40..8e92af7 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -2632,2002 +2632,2002 @@ EXECUTE_EFFECT(fine_portamento_up_once)
data_word = player_host_channel->fine_porta_up_once;
portamento_slide_up(avctx, pla... |
BastyCDGS/ffmpeg-soc | a728dc8cc67124d58361650aa5aab52328d7afee | Fixed (multi) note retrigger in AVSequencer player at least for XM/IT modules. Also some small nit fixes. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index fdd1774..e242e40 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -2584,1113 +2584,1113 @@ EXECUTE_EFFECT(fine_portamento_down)
player_host_channel->tone_porta = v0;
player_host_channel->fine_tone_por... |
BastyCDGS/ffmpeg-soc | 29cefa785396bc48c8bb25d103cac21237c8e824 | Fixed small nit in AVSequencer player in arpeggio handling. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index 7205552..fdd1774 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -1894,1026 +1894,1025 @@ static void do_volume_slide_down(const AVSequencerContext *const avctx,
player_channel->sub_volume = slide_volume;
}
}
st... |
BastyCDGS/ffmpeg-soc | a300dd5a7bff19c549bd5c32bebef86651a71c52 | Fixed some small nits in AVSequencer player header file. | diff --git a/libavsequencer/player.h b/libavsequencer/player.h
index 6022e72..9022bf2 100644
--- a/libavsequencer/player.h
+++ b/libavsequencer/player.h
@@ -1480,582 +1480,590 @@ enum AVSequencerPlayerChannelCondVar {
/** AVSequencerPlayerChannel->use_nna_flags bitfield. */
enum AVSequencerPlayerChannelUseNNAFlags... |
BastyCDGS/ffmpeg-soc | 7000cde598956b2e39a4c3568d616f609db5aca5 | Fixed some nits in AVSequencer player and instrument handling. | diff --git a/libavsequencer/instr.c b/libavsequencer/instr.c
index 9824493..452e355 100644
--- a/libavsequencer/instr.c
+++ b/libavsequencer/instr.c
@@ -1,1107 +1,1117 @@
/*
* Implement AVSequencer instrument management
* Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com>
*
* This file is part of F... |
BastyCDGS/ffmpeg-soc | 695bfb12a9631eaf1b36e663643295aa8ea82eb1 | Reverted correct rounding changes due to signed values which need more special handling of rounding in high quality mixer. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 6fcaaf5..75ff22e 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1036,2941 +1036,2931 @@ static void get_backwards_next_sample_16_to_8(const AV_HQMixerData *const mixer_
const uint32_t counted ... |
BastyCDGS/ffmpeg-soc | 7c6c826c20b7a7bfaf7896b375743ece80cf5b55 | Fixed a small nit in high quality mixer and fixed memory allocation error message for virtual channels in AVSequencer module. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 4dfae9f..e06458e 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -3196,1025 +3196,1025 @@ static int32_t get_sample_1_x(const AV_HQMixerData *const mixer_data, const stru
const struct ChannelBlock *const chan... |
BastyCDGS/ffmpeg-soc | 973cd91f346a7c5e836e7eb0c2aacfdbd1fc13a5 | Some more nit fixes in the low quality mixer and player. | diff --git a/libavsequencer/lq_mixer.c b/libavsequencer/lq_mixer.c
index 4f1f81c..10d989d 100644
--- a/libavsequencer/lq_mixer.c
+++ b/libavsequencer/lq_mixer.c
@@ -115,1211 +115,1211 @@ static void apply_filter(AV_LQMixerChannelInfo *const channel_info, struct Chann
while (i--) {
mix_buf[0] += o3 = (((in... |
BastyCDGS/ffmpeg-soc | 02470dd7b63251e8f8f10c41167335b09c58bfae | Fixed small bug issued with last commit which did not update global instrument volume correctly. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index ad14eb4..3448f84 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -8903,1025 +8903,1025 @@ static void run_effects(AVSequencerContext *const avctx, AVSequencerPlayerHostCh
ctrl_data_word =... |
BastyCDGS/ffmpeg-soc | 94fa0d2ac04c9d82288fae32f02fa412f41c7e33 | Implemented instrument control AVSequencer player track data effect. Fixed playback speed upon seeking if song changes BpM/SPD. | diff --git a/libavformat/iff.c b/libavformat/iff.c
index 2d2d889..08d1b44 100644
--- a/libavformat/iff.c
+++ b/libavformat/iff.c
@@ -2516,541 +2516,542 @@ static int open_tcm1_arpl(AVFormatContext *s, AVSequencerModule *module, uint32_
ByteIOContext *pb = s->pb;
uint32_t iff_size = 4;
int res;
if ... |
BastyCDGS/ffmpeg-soc | 7bbf075cb8557b9cf49bf3a266b94c7ba16bbd73 | Implemented instrument change effect in AVSequencer player and added change instrument note swing to it, also fixed some nits. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index 3aebfc2..e4219cf 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -3753,1025 +3753,1453 @@ EXECUTE_EFFECT(panning_slide_to)
panning_slide_to_panning = data_word >> 8;
if (panning_slide_to_panning &&... |
BastyCDGS/ffmpeg-soc | 92d26f8a564657ccde0fd8dde9631804d645d3e9 | Fixed some typo in note frequency lookup table in AVSequencer player. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index 425d6bf..3aebfc2 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -962,1025 +962,1025 @@ static void play_key_off(AVSequencerPlayerChannel *const player_channel)
if ((sample->flags & AVSEQ_SAMPLE_FLAG_LOOP) && repeat_leng... |
BastyCDGS/ffmpeg-soc | 03e3535a8f2da3b11fe981a5b7c577431d22bde7 | Fixed resetting of temp vars in (resonance) filters in both low and high quality mixer upon turning filtering off and on again. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index c84b0ea..0bd1983 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -5337,1326 +5337,1324 @@ CHANNEL_PREPARE(stereo_16_center)
{
volume *= mixer_data->mixer_data.volume_left;
volume ... |
BastyCDGS/ffmpeg-soc | a12f71cb2634b8f05cd290e30aad6c17ff374211 | Fixed linear interpolation in low quality mixer for backwards looping samples and samples with bit depth != 8 && != 16 && != 32. | diff --git a/libavsequencer/lq_mixer.c b/libavsequencer/lq_mixer.c
index 2fd9da3..2fad0a5 100644
--- a/libavsequencer/lq_mixer.c
+++ b/libavsequencer/lq_mixer.c
@@ -116,3565 +116,3996 @@ static void apply_filter(AV_LQMixerChannelInfo *const channel_info, struct Chann
mix_buf[0] += o3 = (((int64_t) c1 * src_buf... |
BastyCDGS/ffmpeg-soc | cf101b013b1f6a09f6deb0f2f840a156705e7899 | Fixed some nits in high quality mixer. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index b734eba..c84b0ea 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1627,2219 +1627,2191 @@ static void get_backwards_next_sample_16(const AV_HQMixerData *const mixer_data,
if (channel_info->mix_right)
... |
BastyCDGS/ffmpeg-soc | 64358c808f51845a63f7afa0092a9e491fac1158 | Fixed volume calculation for real 16-bit modes for getting next sample in high quality mixer. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index cb6014f..b734eba 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -2350,1504 +2350,1504 @@ static int32_t get_sample_1_16_to_8(const AV_HQMixerData *const mixer_data, cons
}
samp... |
BastyCDGS/ffmpeg-soc | 284de9c72c479ec580c07b911f016b511a5fdf7b | Fixed start sample calculation when new bit depth is used as next sample in high quality mixer. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index c999b15..cb6014f 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1722,1974 +1722,1974 @@ static void get_next_sample_32(const AV_HQMixerData *const mixer_data, struct AV
offset = channel_next_block-... |
BastyCDGS/ffmpeg-soc | 3b0f67603e16979e3a7aea724455bec2fe0b60fc | Some small nit fixes in high quality mixer. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 102dc0a..8bd6f51 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1367,2651 +1367,2651 @@ static void get_next_sample_x(struct AV_HQMixerChannelInfo *const channel_info,
return;
}
... |
BastyCDGS/ffmpeg-soc | 22da89a922416f4ff17cb658e937a8814096a347 | Fixed some nits. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 68e998e..225159d 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1183,2652 +1183,2652 @@ static void get_backwards_next_sample_x(struct AV_HQMixerChannelInfo *const chan
sample = (const int32_t ... |
BastyCDGS/ffmpeg-soc | 85c1a4ce8eedd237684d7df910fe6b0fc181a95a | Fixed distortion in high quality mixer introduced by last commit. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 1735afb..68e998e 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1160,2675 +1160,2675 @@ static void get_next_sample_x(struct AV_HQMixerChannelInfo *const channel_info,
else
channel_info->next_sample = smp;... |
BastyCDGS/ffmpeg-soc | 632f53aad640b5bda1da26568ef9e2a73cfa5fbb | Fixed player random envelope handling, improved quality of high quality mixer and added (resonance) filter default definitions to instruments. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 9b68f9a..1735afb 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1119,2716 +1119,2716 @@ static void get_next_sample_x(struct AV_HQMixerChannelInfo *const channel_info,
if (channel_info->mix_right)
... |
BastyCDGS/ffmpeg-soc | 01bf26a3664d62ad2b8ba13f6bdd691ec76867d7 | Fixed permissions and backwards looping in high quality mixer. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index e28ab0c..9b68f9a 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -832,1281 +832,1281 @@ static void get_backwards_next_sample_x_to_8(struct AV_HQMixerChannelInfo *const
channel_info->next_sample_r... |
BastyCDGS/ffmpeg-soc | 468d49c38417ed62dc4a76cbf5f05f1b32cd96c1 | Fixed interpolation taking account of counted looping in high quality mixer and some small nits as well as partial tremolo and pannolo effect fixing. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index 7d54cad..1112c91 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1,1910 +1,2112 @@
/*
* Sequencer high quality integer mixer
* Copyright (c) 2011 Sebastian Vater <cdgs.basty@googlemail.com>
*
* This file is part... |
BastyCDGS/ffmpeg-soc | 366787943097923c48152c8684dfefd579e9852b | Fixed one unnecessary parenthesis in low quality mixer. | diff --git a/libavsequencer/lq_mixer.c b/libavsequencer/lq_mixer.c
index a4339ed..1d42a46 100644
--- a/libavsequencer/lq_mixer.c
+++ b/libavsequencer/lq_mixer.c
@@ -3273,1019 +3273,1019 @@ static void set_mix_functions(const AV_LQMixerData *const mixer_data, struct Cha
if (mixer_data->mixer_data.volume_lef... |
BastyCDGS/ffmpeg-soc | b9c340a4fe000b9517de43a4b8822fd524fc2a30 | Fixed copyright year in high quality mixer to reflect current year instead of 2010. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index ca31752..6c397d5 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1,515 +1,515 @@
/*
* Sequencer high quality integer mixer
- * Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com>
+ * Copyright (c) 2011 Seba... |
BastyCDGS/ffmpeg-soc | be2bf000c5df4b9204f3658691016d827707f315 | Removed parenthesis not necessary (nit cleanup) in module playback handler. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index 37f76a9..e4aa57c 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -1,894 +1,894 @@
/*
* Sequencer main playback handler
* Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com>
*
* This file is part of FFmpeg.
*... |
BastyCDGS/ffmpeg-soc | f15998ebe6032db27e72bee0bdfd3ee35f7c5ab3 | Fixed libavformat/iff.c to transfer the first channel to the original mixer after finished seeking. | diff --git a/libavformat/iff.c b/libavformat/iff.c
index 06997b0..f723581 100644
--- a/libavformat/iff.c
+++ b/libavformat/iff.c
@@ -2482,563 +2482,563 @@ static int open_tcm1_keyb(AVFormatContext *s, AVSequencerModule *module, uint32_
keyboard->key[i].sample = get_be16(pb);
keyboard->... |
BastyCDGS/ffmpeg-soc | c0f3f1c2e7d412f6e813d2b000913da34f346f93 | Some optimization in the mixers and bug fixed regarding wrong reinit of mixer after seeking. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index cd1db34..2721965 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -3763,906 +3763,915 @@ static void set_sample_mix_rate(const AV_HQMixerData *const mixer_data, struct C
{
const uint32_t mix_rate = mixer_data->mix_ra... |
BastyCDGS/ffmpeg-soc | dbc3fab21b8cf5fba5507d3f414c684e1eb4f219 | Fixed small calculation bug in volume table calculation in both low and high quality mixers. | diff --git a/libavformat/iff.c b/libavformat/iff.c
index 06997b0..3e1152c 100644
--- a/libavformat/iff.c
+++ b/libavformat/iff.c
@@ -197,1024 +197,1025 @@ static int get_metadata(AVFormatContext *s,
if (get_buffer(s->pb, buf, data_size) < 0) {
av_free(buf);
return AVERROR(EIO);
}
buf[... |
BastyCDGS/ffmpeg-soc | 7e9697b181970d07f3ca93f48ea3e1d6704be5e0 | Fixed backwards looping calculation in high quality mixer. | diff --git a/libavsequencer/hq_mixer.c b/libavsequencer/hq_mixer.c
index c32a5fc..c5e8ada 100644
--- a/libavsequencer/hq_mixer.c
+++ b/libavsequencer/hq_mixer.c
@@ -1,1443 +1,1443 @@
/*
* Sequencer high quality integer mixer
* Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com>
*
* This file is part... |
BastyCDGS/ffmpeg-soc | 83b5b61c6f4c88039a06ceecaea4a13eafb81c66 | Forgot to remove old overflow status flag handling code in synth sound assembler's SUBX instruction. | diff --git a/libavsequencer/player.c b/libavsequencer/player.c
index 463cbff..c69e912 100644
--- a/libavsequencer/player.c
+++ b/libavsequencer/player.c
@@ -5116,1027 +5116,1024 @@ static void se_vibrato_do(const AVSequencerContext *const avctx, AVSequencerPlay
player_channel->vibrato_slide -= old_frequency - pl... |
sillygwailo/Kwaltz | 010762a0cfdec1dfa5219613912eea207ca0fb37 | Updating Drupal to 6.20 | diff --git a/kwaltz/kwaltz.make b/kwaltz/kwaltz.make
index 750ea9e..91aaff1 100644
--- a/kwaltz/kwaltz.make
+++ b/kwaltz/kwaltz.make
@@ -1,58 +1,58 @@
core = 6.x
projects[drupal][type] = core
projects[drupal][download][type] = cvs
-projects[drupal][download][revision] = DRUPAL-6-19
+projects[drupal][download][revi... |
sillygwailo/Kwaltz | 56e1ff6a20ffafffcba540f2d6954906e4553779 | Updating Drupal to 6.19, Module Grants to 3.6, Revisioning to 3.11, Token to 1.15, Diff to 2.1, and Features to 1.0. | diff --git a/kwaltz/kwaltz.make b/kwaltz/kwaltz.make
index 18a0098..750ea9e 100644
--- a/kwaltz/kwaltz.make
+++ b/kwaltz/kwaltz.make
@@ -1,58 +1,58 @@
core = 6.x
projects[drupal][type] = core
projects[drupal][download][type] = cvs
-projects[drupal][download][revision] = DRUPAL-6-16
+projects[drupal][download][revi... |
sillygwailo/Kwaltz | 03fa3c68a68a2506f7d0680d684ff5ae61867ac1 | Updating the patch to include the latest patch to Workflow. Install the Kwaltz Workflow module from the Git repository. | diff --git a/kwaltz/kwaltz.make b/kwaltz/kwaltz.make
index 9c87fc7..18a0098 100644
--- a/kwaltz/kwaltz.make
+++ b/kwaltz/kwaltz.make
@@ -1,54 +1,58 @@
core = 6.x
projects[drupal][type] = core
projects[drupal][download][type] = cvs
projects[drupal][download][revision] = DRUPAL-6-16
projects[drupal][download][root... |
sillygwailo/Kwaltz | bfbc0c54b2b39084947ce1846ae566fbcdaa51ce | Remove access control code now that it's in the features module. Closes #3. | diff --git a/kwaltz/kwaltz.profile b/kwaltz/kwaltz.profile
index fb0eae2..aa9e4a0 100644
--- a/kwaltz/kwaltz.profile
+++ b/kwaltz/kwaltz.profile
@@ -1,249 +1,207 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return
* An array of modules to enable... |
sillygwailo/Kwaltz | dae232863e9a4b1d2f859ea69a9c8353a1c27e59 | Match up the permissions to the instructions better. | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index cfa491d..fb0eae2 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,242 +1,249 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | b503c19e49e9b1c5486fa12d052756344d9370c3 | Remove duplicate code. | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index c66f6c5..cfa491d 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,246 +1,242 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | 528284d68735eb70e862e6dc4ff4c9b1a9327fb9 | Whitespace. | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index 4f468f2..c66f6c5 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,246 +1,246 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | 3666a64d07499a24ebda8004a431d644677203cb | Reverting back to hard-coded Role IDs, but moving up the storage of their numeric values up. | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index bd937a8..4f468f2 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,246 +1,246 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | c8cb6bbd8ca874120138c7e244ed16486ad599bb | Working code to save workflow permissions. | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index ed2e65d..bd937a8 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,204 +1,246 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | f82dae0b8cbd986717a0b9e43f4d95df091050b8 | Remove hard-coded role IDs | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index 628b8a3..ed2e65d 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,199 +1,204 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | f07b7726b44d09378c12a3995544cda1bb671da2 | Use my forked version of the Install Profile API instead of private functions in the profile. Make file updated. | diff --git a/make/kwaltz.make b/make/kwaltz.make
index bb2d4e9..9c87fc7 100644
--- a/make/kwaltz.make
+++ b/make/kwaltz.make
@@ -1,56 +1,54 @@
core = 6.x
projects[drupal][type] = core
projects[drupal][download][type] = cvs
projects[drupal][download][revision] = DRUPAL-6-16
projects[drupal][download][root] = ":ps... |
sillygwailo/Kwaltz | b532323bc92855703a74b65e267459ab6013e6d7 | Removing hard-coded transition ID. Also renamed a function for consistency, and check to see if a transition ID exists before creating a trigger. | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index 5a42516..300651f 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,207 +1,247 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | 733bb716ffc396ebad8ae303dcf15a84c13e28dd | Add a trigger to set node status to published when workflow state changes from In Moderation to Live. Uses sample code from http://drupal.org/node/822468 Closes #2 | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index 2482598..5a42516 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,192 +1,207 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | f3d0bfa70e5727a145cb9fd216e68101b42fb325 | Assign 'moderation' workflow to the Story content type. Also added a function to retrief the workflow wid based on machine name, assuming the patch to Workflow at http://drupal.org/node/558378 has been made. Closes #1 | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index baabf00..2482598 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,165 +1,192 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | 2eba0683ec085e84757c8f6b8bbaadc9b153b27f | Disable Color and Comment modules. Remove the Page content type. Set more options for the Story content type (unpublished, promoted to front page, new revisions, new revision in draft pending moderation. | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index 95a0faf..baabf00 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,177 +1,165 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | ecf693c7a8e8ecf06354a6c7d417c3a6442a2b5a | Actually store workflow values in the features module. | diff --git a/modules/kwaltz_workflow/kwaltz_workflow.features.workflow.inc b/modules/kwaltz_workflow/kwaltz_workflow.features.workflow.inc
index 1345955..31f8e3a 100644
--- a/modules/kwaltz_workflow/kwaltz_workflow.features.workflow.inc
+++ b/modules/kwaltz_workflow/kwaltz_workflow.features.workflow.inc
@@ -1,71 +1,119... |
sillygwailo/Kwaltz | 8790a6473f4632409d0df96724fcf6900d8ba8f4 | Disable Color and Comment modules. Remove the Page content type. Set more options for the Story content type (unpublished, promoted to front page, new revisions, new revision in draft pending moderation. | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index 95a0faf..baabf00 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,177 +1,165 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | 142b736c8961a430c4462a5c2baf35cef173c259 | Disable Color and Comment modules. Remove the Page content type. Set more options for the Story content type (unpublished, promoted to front page, new revisions, new revision in draft pending moderation. | diff --git a/modules/kwaltz_workflow/kwaltz_workflow.features.workflow.inc b/modules/kwaltz_workflow/kwaltz_workflow.features.workflow.inc
index 1345955..31f8e3a 100644
--- a/modules/kwaltz_workflow/kwaltz_workflow.features.workflow.inc
+++ b/modules/kwaltz_workflow/kwaltz_workflow.features.workflow.inc
@@ -1,71 +1,119... |
sillygwailo/Kwaltz | 977995e69166145037e427acb0e59b9403687f73 | Adding more comments, site name should now be initially set to the hostname like the default profile. | diff --git a/profiles/kwaltz/kwaltz.profile b/profiles/kwaltz/kwaltz.profile
index b904307..95a0faf 100644
--- a/profiles/kwaltz/kwaltz.profile
+++ b/profiles/kwaltz/kwaltz.profile
@@ -1,173 +1,177 @@
<?php
// $Id$
/**
* Return an array of the modules to be enabled when this profile is installed.
*
* @return... |
sillygwailo/Kwaltz | 8b95b77e66118f7ee44346b218a135bb5d5f0ad9 | Adding the Drush Make file | diff --git a/make/kwaltz.make b/make/kwaltz.make
new file mode 100644
index 0000000..bb2d4e9
--- /dev/null
+++ b/make/kwaltz.make
@@ -0,0 +1,56 @@
+core = 6.x
+
+projects[drupal][type] = core
+projects[drupal][download][type] = cvs
+projects[drupal][download][revision] = DRUPAL-6-16
+projects[drupal][download][root] = ... |
intuited/xmlearn | faec630695db594a615b47fdcb397adad718beec | fix to allow dumping of non-node path locations. | diff --git a/__init__.py b/__init__.py
index 89dd598..3ba1dcc 100755
--- a/__init__.py
+++ b/__init__.py
@@ -1,455 +1,460 @@
#!/usr/bin/env python
"""Library and CLI for learning about XML formats."""
# Copyright (C) 2010 Ted Tibbetts
#
# This program is free software: you can redistribute it and/or modify
# ... |
intuited/xmlearn | 47f7071ce06dc69f1e7c85ed404eb56b6d7f9ca9 | cleanup format presentation and revise README | diff --git a/README.markdown b/README.markdown
index e604da0..e6d0472 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1,111 +1,118 @@
`xmlearn`
=========
Library and CLI for learning about XML formats.
-----------------------------------------------
`xmlearn` is a python module and command line utility ... |
intuited/xmlearn | e254364fc4782ef22e58b34dcfcedc8333520bfd | add option to select format, eg Docbook. | diff --git a/__init__.py b/__init__.py
index bcd5c6a..75f468f 100755
--- a/__init__.py
+++ b/__init__.py
@@ -1,441 +1,448 @@
#!/usr/bin/env python
"""Library and CLI for learning about XML formats."""
# Copyright (C) 2010 Ted Tibbetts
#
# This program is free software: you can redistribute it and/or modify
# ... |
intuited/xmlearn | 81a9ebe6161d8c3e3e93000560b74bfb0ed99826 | tuck dump code into build_dump_parser | diff --git a/__init__.py b/__init__.py
index 0800e03..bcd5c6a 100755
--- a/__init__.py
+++ b/__init__.py
@@ -1,443 +1,441 @@
#!/usr/bin/env python
"""Library and CLI for learning about XML formats."""
# Copyright (C) 2010 Ted Tibbetts
#
# This program is free software: you can redistribute it and/or modify
# ... |
intuited/xmlearn | 3e66c954bc1acd996eb7c962ed4eb4deee8dfa56 | rearrange dump options. | diff --git a/__init__.py b/__init__.py
index a849efe..0800e03 100755
--- a/__init__.py
+++ b/__init__.py
@@ -1,443 +1,443 @@
#!/usr/bin/env python
"""Library and CLI for learning about XML formats."""
# Copyright (C) 2010 Ted Tibbetts
#
# This program is free software: you can redistribute it and/or modify
# ... |
intuited/xmlearn | 80b120c7ce2c95473fbfb3486c30e0562a4aada6 | add documentation and license information | diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..94a9ed0
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy... |
intuited/xmlearn | ec62b195ec65addb6124f5f925aded8b21814b25 | fix bug that was causing incomplete results from iter_unique_child_tags | diff --git a/__init__.py b/__init__.py
index 5085902..918a858 100755
--- a/__init__.py
+++ b/__init__.py
@@ -1,426 +1,428 @@
#!/usr/bin/env python
"""Library and CLI for learning about XML formats."""
from lxml import etree
class Dumper(object):
"""Dump an lxml.etree tree starting at `element`.
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.