repo
string
commit
string
message
string
diff
string
sfraser/MultithreadedGameOfLife
0fea7575573a8a2d0bec798b51880fe3d1351d44
opened in IntelliJ 9.0.1 added comment about transients
diff --git a/MultithreadedGameOfLife.ipr b/MultithreadedGameOfLife.ipr index af63655..21e41f6 100644 --- a/MultithreadedGameOfLife.ipr +++ b/MultithreadedGameOfLife.ipr @@ -1,260 +1,218 @@ <?xml version="1.0" encoding="UTF-8"?> -<project relativePaths="false" version="4"> +<project version="4"> <component name="Ant...
sfraser/MultithreadedGameOfLife
386cdf6da6f4297257e4533778526e380769e20a
docs, and typehint for perfomance looked at agent usage to see if I could keep the set of agents but no luck with the current model - maybe if the agents state was just @mycells, and when we send determine-new-state-in-agent we include the batch as a param. That might make a little more sense, and allow us to not creat...
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index 6a82a30..1d78e09 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,246 +1,252 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
179f526ca2458f04051a3aeb1f27132ff785f3cf
wow fixing a major performance regression - when I moved the x-cells, y-cells, and cell-size to be locals that get passed around, performance took a nose dive. I am not sure why yet, but for now I will move them back out. I don't think cell-size needs to be moved out too, but I did so anyways since I was already moving...
diff --git a/src/README b/src/README index 5caf562..f637288 100644 --- a/src/README +++ b/src/README @@ -1,31 +1,33 @@ This program runs 1 to many Game of Life simulations. For more on the "Game of Life", see: http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life This code uses clojure concurrency primitives...
sfraser/MultithreadedGameOfLife
03c3621c262d2828a71ffb511a8c9b4f04617320
wow fixing a major performance regression - when I moved the x-cells, y-cells, and cell-size to be locals that get passed around, performance took a nose dive. I am not sure why yet, but for now I will move them back out. I don't think cell-size needs to be moved out too, but I did so anyways since I was already moving...
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index 6089132..6a82a30 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,238 +1,246 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
97980b04fddacb3eb16e424d58a55856dd3e11fa
formatting
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index 08559ba..6089132 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,238 +1,238 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
0acaa0711e6b67ee1f6b68944cbd5b2cb77e7f2c
removing some "global" vars and making them more local in scope where possible. Cleaned up -main so that it is more clear what you have to do when calling it. Formatting and cleanup. Added a README.
diff --git a/src/README b/src/README new file mode 100644 index 0000000..5caf562 --- /dev/null +++ b/src/README @@ -0,0 +1,31 @@ + +This program runs 1 to many Game of Life simulations. For more on the "Game of Life", see: + http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life + +This code uses clojure concurrency ...
sfraser/MultithreadedGameOfLife
158c346d7c418571a94bf8f3869d5d6a5fc7705e
oops fixing size of cells
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index 83ae4eb..a628271 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,241 +1,241 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
380ec8a6d32911dcd9f39ac02c1c4abcbf43580e
got the fps indicator working - however note I think I can just used closed over refs instead of atoms
diff --git a/MultithreadedGameOfLife.iws b/MultithreadedGameOfLife.iws index f0ae884..960ba9a 100644 --- a/MultithreadedGameOfLife.iws +++ b/MultithreadedGameOfLife.iws @@ -1,593 +1,596 @@ <?xml version="1.0" encoding="UTF-8"?> <project relativePaths="false" version="4"> - <component name="BookmarkManager"> - <ed...
sfraser/MultithreadedGameOfLife
c5d56a6a479d4d0e28c61af62f74978d3701a2b7
sources for clojure jar I just added
diff --git a/lib/clojure-sources-1.1.0-alpha-SNAPSHOT.jar b/lib/clojure-sources-1.1.0-alpha-SNAPSHOT.jar new file mode 100644 index 0000000..9d9cc97 Binary files /dev/null and b/lib/clojure-sources-1.1.0-alpha-SNAPSHOT.jar differ
sfraser/MultithreadedGameOfLife
d140e05ecf6b1621251097b5bfde360b861948cb
starting to add a "frames per second" display, and now using the latest clojure snapshot to see if transients speed things up
diff --git a/MultithreadedGameOfLife.iml b/MultithreadedGameOfLife.iml index a57f76f..e4928dc 100644 --- a/MultithreadedGameOfLife.iml +++ b/MultithreadedGameOfLife.iml @@ -1,18 +1,26 @@ <?xml version="1.0" encoding="UTF-8"?> <module relativePaths="true" type="JAVA_MODULE" version="4"> <component name="FacetManage...
sfraser/MultithreadedGameOfLife
f190216d99407e6cc7e393d8450aac769a7cc46c
checking in IntelliJ project files before pull from linford
diff --git a/MultithreadedGameOfLife.ipr b/MultithreadedGameOfLife.ipr index 3f3d31c..af63655 100644 --- a/MultithreadedGameOfLife.ipr +++ b/MultithreadedGameOfLife.ipr @@ -1,260 +1,260 @@ <?xml version="1.0" encoding="UTF-8"?> <project relativePaths="false" version="4"> <component name="AntConfiguration"> <d...
sfraser/MultithreadedGameOfLife
be9c8a58d5ba63c7b89b08a94938aa72b2b01ab0
formatting - should be no material changes, though maybe I made the grid smaller as I was running on my laptop
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index c7de410..0972cf1 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,223 +1,220 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
50dd1a689aaf55731c063b4b6e3f84cded5454ed
finally got the agents showing perf difference between threads! the key was that in determine-new-state-in-agent I did not have parens around the "doall" call, which must have turned the whole thing into a form that got evaluated LATER on
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index 295fa2f..c7de410 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,218 +1,223 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
1491b0337133521d7ba97d91a4a11cdf308e8b92
finally got agents working BUT... still not faster agents were tricky but I got them in there. I think Lazy stuff is holding me back
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index 595cfcd..295fa2f 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,214 +1,218 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
fbad5a7665d5c327536a73624f3e8d3f2bb331ce
removing unneeded procs param to toggle-thread I didn't really need to pass in "procs" as it was equal to the count of batch-set
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index c1bfe9b..595cfcd 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,209 +1,214 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
2c56e1c532b8706c07f19098129fd0b2894a498e
minor cleanup about ready to add agents - going to give each window its own vector of agents and have it pass those into a function that will call and them and then wait till they are all done
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index cfab4ff..c1bfe9b 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,209 +1,209 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
d3862b18597a4e213adee1a27bf18805af00d29b
got old and new code in here (working and not working) I took out some of the doall calls in calc-state to try and isolate why it is not faster than the old nested pmaps. I am still not sure, but it might be more a function of how the "update-batch-of-new-cells" would write the changes to new-cells. Maybe that was why ...
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index a111708..cfab4ff 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,209 +1,209 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
d3142e3718d58f14344b1791d10743cd3793ec09
rolling back to when multithreaded worked commented out the experimental calc-state, put the old calc-state and update-batch -of-new-cell-states back in. Now the windows with more threads are running faster again.
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index e65e909..a111708 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,209 +1,209 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
9fd7466a4411032325bc9cc01a217cf3bad15da7
fixed defct in code from groups need to pass a [vector] to doseq
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index cec40de..e65e909 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,211 +1,209 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implemen...
sfraser/MultithreadedGameOfLife
da5ebb5cede9930bffe104094440553c690430c2
formatting auto formatted code
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index ab82e85..cec40de 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,211 +1,211 @@ (comment - ; Parallelized Conway's Game of Life - ; Clojure implementa...
sfraser/MultithreadedGameOfLife
fa54963efc1289830f75544c4fe918dda5126647
fixed static ref Call to Math/ceil was incorrect
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index 2036383..ab82e85 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,211 +1,211 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implementa...
sfraser/MultithreadedGameOfLife
146503ec887a6f774ad7c06e03a500c900648b70
adding new function This is some code from the thread here: http://groups.google.com/group/clojure/msg/dd68dc457572f096? I want to adapt the program to use this pattern
diff --git a/src/org/frasers/life/MultiThreadedLife.clj b/src/org/frasers/life/MultiThreadedLife.clj index 52b6035..2036383 100644 --- a/src/org/frasers/life/MultiThreadedLife.clj +++ b/src/org/frasers/life/MultiThreadedLife.clj @@ -1,196 +1,211 @@ (comment ; Parallelized Conway's Game of Life ; Clojure implementa...
sfraser/MultithreadedGameOfLife
bdb46b0024a6e776dcfde121903d2c24253bcf27
Initial import, though I think this was already in the Home repo
diff --git a/MultithreadedGameOfLife.iml b/MultithreadedGameOfLife.iml new file mode 100644 index 0000000..a57f76f --- /dev/null +++ b/MultithreadedGameOfLife.iml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module relativePaths="true" type="JAVA_MODULE" version="4"> + <component name="FacetManager"> + ...
cagatay/Evolution-9
dee5b0d95d722706d5014595d4e7d18ef81929cd
Fixed grade values at GUI
diff --git a/src/main.py b/src/main.py index b94d70c..3ad2a83 100755 --- a/src/main.py +++ b/src/main.py @@ -1,272 +1,266 @@ + #!/usr/bin/python2.6 import sys, traceback import gtk from brain.NN import neural_network from evolution.manager import evolution from mingus.midi import fluidsynth from util.storage imp...
cagatay/Evolution-9
f22ca3df2bb8b23d60b83c8472f5298dc03b12ba
added samples from a family
diff --git a/samples/evolution9-51-0.mid b/samples/evolution9-51-0.mid new file mode 100644 index 0000000..e1a3883 Binary files /dev/null and b/samples/evolution9-51-0.mid differ diff --git a/samples/evolution9-51-1.mid b/samples/evolution9-51-1.mid new file mode 100644 index 0000000..cc46a88 Binary files /dev/null and...
cagatay/Evolution-9
8e0ed10c36462ac8e7e97cd673d2ee70d27bb30c
are you kidding me?
diff --git a/README.txt b/README.txt index 4103170..bc0c122 100644 --- a/README.txt +++ b/README.txt @@ -1,12 +1,12 @@ requirements: - python 2.6 (strictly) - pybrain (and its own requirements) - mingus - pyevolve + python 2.6 (strictly) + pybrain (and its own requirements) + mingus + pyevolve ...
cagatay/Evolution-9
15b386344bf83f1caf05095eaaab7c76196d91f6
the final commit
diff --git a/src/brain/NN.py b/src/brain/NN.py index e844cac..5202f81 100644 --- a/src/brain/NN.py +++ b/src/brain/NN.py @@ -1,86 +1,88 @@ from pybrain.supervised.trainers import BackpropTrainer from pybrain.datasets import SupervisedDataSet from pybrain.tools.shortcuts import buildNetwork import constants imp...
cagatay/Evolution-9
455a31a3cd88c68c15b665bded3dfffb702599a9
latest
diff --git a/input/beatles.txt b/input/beatles.txt index 16d1f6b..bcbb4d5 100644 --- a/input/beatles.txt +++ b/input/beatles.txt @@ -1,14 +1,31 @@ hardday:d=4,o=5,b=180:8c#,8d,8c#,e,p,e,8p,e,p,8e,8e,8d,8e,g,p,8e,8d,8e,c#,p,8c#,8d,8c#,e,p,e,8p,e,p,8e,8e,8d,8e,g,p,8e,8d,8e,c# Love:d=8,o=6,b=180:d,d,d,d,4d,2p,d,d,d,d,4...
cagatay/Evolution-9
aa6f88fd0f32df94750e670b62371219e430dc97
latest
diff --git a/src/evolution/manager.py b/src/evolution/manager.py index bd546fc..e1bac62 100644 --- a/src/evolution/manager.py +++ b/src/evolution/manager.py @@ -1,191 +1,196 @@ from brain.NN import neural_network from evolution import operators from evolution.genome import song class evolution(object): def _...
cagatay/Evolution-9
10f0cbfb411c03118376e2457f4a7d8f3daa5cfd
latest
diff --git a/src/brain/NN.py b/src/brain/NN.py index 38aead1..8a812b5 100644 --- a/src/brain/NN.py +++ b/src/brain/NN.py @@ -1,83 +1,85 @@ from pybrain.supervised.trainers import BackpropTrainer from pybrain.datasets import SupervisedDataSet from pybrain.tools.shortcuts import buildNetwork import constants imp...
cagatay/Evolution-9
1ec0dcbd4446f9332b38c41d89495d94136bb546
latest
diff --git a/src/brain/NN.py b/src/brain/NN.py index 3c54f90..38aead1 100644 --- a/src/brain/NN.py +++ b/src/brain/NN.py @@ -1,222 +1,83 @@ -from mingus.containers.Note import Note from pybrain.supervised.trainers import BackpropTrainer +from pybrain.datasets import SupervisedDataSet +from pybrain.tools.shortcuts i...
cagatay/Evolution-9
ea325f47017b574a1a3cd4c0b120f2f33d859551
neural network
diff --git a/src/brain/NN.py b/src/brain/NN.py index c175334..3c54f90 100644 --- a/src/brain/NN.py +++ b/src/brain/NN.py @@ -1,185 +1,222 @@ -from pybrain.tools.shortcuts import buildNetwork from mingus.containers.Note import Note from pybrain.supervised.trainers import BackpropTrainer -from pybrain.datasets impor...
cagatay/Evolution-9
e321f67621d610e20faccdad311a5b5b7a418566
improvements
diff --git a/src/evolution/genome.py b/src/evolution/genome.py index e7fa3fd..ab6a459 100644 --- a/src/evolution/genome.py +++ b/src/evolution/genome.py @@ -1,43 +1,48 @@ from util import rttl from mingus.containers.Track import Track class song(object): def __init__(self, genome, ...
cagatay/Evolution-9
d929ca1534bb66eca055fbdb8105444485e48c68
improvements, gui work
diff --git a/src/constants.py b/src/constants.py index 71081ea..101957c 100644 --- a/src/constants.py +++ b/src/constants.py @@ -1,10 +1,11 @@ ''' Created on Oct 10, 2010 @author: cagatay.yuksel ''' SQLITE_FILE = "../data/evolution9.db" OUTPUT_DIR = "../output/" INPUT_DIR = "../inputs/" -SAVE_DIR = "../save...
cagatay/Evolution-9
7916746244d2de079e6b6bc1516363d5ee905e00
improvements, gui work
diff --git a/src/evolution/genome.py b/src/evolution/genome.py index 421be09..f678375 100644 --- a/src/evolution/genome.py +++ b/src/evolution/genome.py @@ -1,32 +1,37 @@ from util import rttl class song(object): def __init__(self, genome, evolution, genera...
cagatay/Evolution-9
330e6f1dba6bee2a6ae8a60e389be73879695ad5
gui work
diff --git a/src/evolution/manager.py b/src/evolution/manager.py index 888b6c5..79cda48 100644 --- a/src/evolution/manager.py +++ b/src/evolution/manager.py @@ -1,76 +1,80 @@ from brain.NN import neural_network from evolution import operators from evolution.genome import song class evolution(object): - def __i...
cagatay/Evolution-9
b6ee347b1c5a70543b2affa569aa9a26b430c72e
bugfixes, improvemtnes, gui work
diff --git a/src/brain/NN.py b/src/brain/NN.py index 6ee0381..c175334 100644 --- a/src/brain/NN.py +++ b/src/brain/NN.py @@ -1,183 +1,185 @@ from pybrain.tools.shortcuts import buildNetwork from mingus.containers.Note import Note from pybrain.supervised.trainers import BackpropTrainer from pybrain.datasets impor...
cagatay/Evolution-9
84fc19d56d020b6f3db83889c6492ac69b71bcdf
various bugfixes, gui work
diff --git a/src/brain/NN.py b/src/brain/NN.py index cb33230..6ee0381 100644 --- a/src/brain/NN.py +++ b/src/brain/NN.py @@ -1,183 +1,183 @@ from pybrain.tools.shortcuts import buildNetwork from mingus.containers.Note import Note from pybrain.supervised.trainers import BackpropTrainer from pybrain.datasets impor...
cagatay/Evolution-9
65c698badb2049167376160ce8b708a56384b96c
gui development
diff --git a/.gitignore b/.gitignore index b8b7417..94e4bd4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ +data/* output/* midi/* *.pyc *.swp diff --git a/README.txt b/README.txt index c80ccf0..4103170 100644 --- a/README.txt +++ b/README.txt @@ -1,11 +1,12 @@ requirements: python 2.6 (strictly) p...
cagatay/Evolution-9
75a027b3abacf2dea661e47e9c1114a8f20a267e
various bugfixes, gui
diff --git a/.gitignore b/.gitignore index 49ff695..b8b7417 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ output/* +midi/* *.pyc *.swp diff --git a/data/evolution9.db b/data/evolution9.db index 5545057..a95600c 100644 Binary files a/data/evolution9.db and b/data/evolution9.db differ diff --git a/src/brain...
cagatay/Evolution-9
d42b47f7936a8375ee7cc9b3afbeba2c0806e5e1
latest
diff --git a/midi/Readfirst.txt b/midi/Readfirst.txt new file mode 100644 index 0000000..9ccbe18 --- /dev/null +++ b/midi/Readfirst.txt @@ -0,0 +1,21 @@ +ULTIMATE GM/GS Soundfont + +THIS ONLY WORKS WITH IF YOU HAVE EIGHT MEGS ON YOUR SB/32/64!!!!!! + +GM/GS Compatible Soundfont + +I got sick and tired of all the ...
cagatay/Evolution-9
39cb778c5719065e447ea2999ddc7f4b216bd4a4
latest
diff --git a/src/genome.py b/src/genome.py index 51be314..85eee7c 100644 --- a/src/genome.py +++ b/src/genome.py @@ -1,101 +1,107 @@ import random GENOME_LENGTH = 20 pitch_range = ['P', 'A', 'A#', 'B', 'C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#'] duration_range = [str(2**x) for x in range(6)] octave_range ...
cagatay/Evolution-9
040664720095cef57d297a08226ab773b02378c3
latest
diff --git a/src/genome.py b/src/genome.py index 3d255c1..51be314 100644 --- a/src/genome.py +++ b/src/genome.py @@ -1,101 +1,101 @@ import random GENOME_LENGTH = 20 pitch_range = ['P', 'A', 'A#', 'B', 'C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#'] duration_range = [str(2**x) for x in range(6)] octave_range ...
cagatay/Evolution-9
633b7ddfcaa81ebcef6e24647dd1d0fcd0380d18
latest
diff --git a/.gitignore b/.gitignore index a6d48fe..49ff695 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ output/* *.pyc +*.swp diff --git a/src/brain/NN.py b/src/NN.py similarity index 95% rename from src/brain/NN.py rename to src/NN.py index 30b2668..df817cc 100644 --- a/src/brain/NN.py +++ b/src/NN.py @...
cagatay/Evolution-9
e01140e44a8240d10f9e95a3f44605682abb2ade
latest
diff --git a/.gitignore b/.gitignore index 5fca3f8..a6d48fe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/output +output/* *.pyc
cagatay/Evolution-9
901a9c2536f15d216b6ed531c4526b0823ee1211
RTTL parser is updated, code organization
diff --git a/.gitignore b/.gitignore index 1f57b97..5fca3f8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /output +*.pyc diff --git a/.pydevproject b/.pydevproject index 8076667..d3ed789 100644 --- a/.pydevproject +++ b/.pydevproject @@ -1,10 +1,10 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -...
cagatay/Evolution-9
1d5a6072366069467bc8ad1adbadb2c866285c3a
fitness function tested&configured
diff --git a/inputs/metallica.txt b/inputs/metallica.txt new file mode 100644 index 0000000..1397e29 --- /dev/null +++ b/inputs/metallica.txt @@ -0,0 +1,2 @@ +idisappear:d=4,o=5,b=125:d#.,f#,2a#.,8p,8a#,8a#,a#,g#.,8p,8a#,8a#,a#,g#,8a#,8g#,f#,f#,8d#,d#.,f#,2a#.,8p,8a#,8a#,a#,g#.,8p,8a#,8a#,a#,g#,8a#,8g#,f#,f#,g#,g#,a#,b...
cagatay/Evolution-9
6272aaa656f04bc1092f6b4c4b9af0f3af6f8e03
- Neural Network yapısını kaydedip daha sonra kullanmak için save klasörü yaratıldı - Neural Network ü şarkılarla eğitecek sınıf yaratıldı -
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1f57b97 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/output diff --git a/src/NN.py b/src/NN.py new file mode 100644 index 0000000..348c9ff --- /dev/null +++ b/src/NN.py @@ -0,0 +1,96 @@ +from pybrain.tools.shortcuts import buildNetwork +from mi...
cagatay/Evolution-9
20d48ab1e3800461242a225b507ce757da4855b0
rttl, mingus, pybrain
diff --git a/inputs/beatles.txt b/inputs/beatles.txt new file mode 100644 index 0000000..16d1f6b --- /dev/null +++ b/inputs/beatles.txt @@ -0,0 +1,14 @@ +hardday:d=4,o=5,b=180:8c#,8d,8c#,e,p,e,8p,e,p,8e,8e,8d,8e,g,p,8e,8d,8e,c#,p,8c#,8d,8c#,e,p,e,8p,e,p,8e,8e,8d,8e,g,p,8e,8d,8e,c# +Love:d=8,o=6,b=180:d,d,d,d,4d,2p,d,d...
cagatay/Evolution-9
abb767606c20e517f6b66fdab0accb961c520e12
PyBrain integration
diff --git a/output/output.mid b/output/output.mid index 79008e4..ac18529 100644 Binary files a/output/output.mid and b/output/output.mid differ diff --git a/src/main.py b/src/main.py index 4065184..2905177 100644 --- a/src/main.py +++ b/src/main.py @@ -1,24 +1,27 @@ ''' Created on Oct 6, 2010 @author: cagatay.yu...
cagatay/Evolution-9
279db55bdc38d891898607026e5293a19bc19632
from python 2.7 to pyhton 2.6 for scipy
diff --git a/.pydevproject b/.pydevproject index aca2a86..8076667 100644 --- a/.pydevproject +++ b/.pydevproject @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <?eclipse-pydev version="1.0"?> <pydev_project> -<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">python27<...
cagatay/Evolution-9
48aaa2d8890922ab495603642f8ff15a0e2c4045
from Python 3.2 to Python 2.7
diff --git a/.pydevproject b/.pydevproject index a8c8f2d..aca2a86 100644 --- a/.pydevproject +++ b/.pydevproject @@ -1,10 +1,10 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<?eclipse-pydev version="1.0"?> - -<pydev_project> -<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">python3</pyde...
cagatay/Evolution-9
aed6c94f90ed27d8e9df480e0d446fc5ec9a434c
veritabanı metodları
diff --git a/src/evolution9/evolution/storage/storageActions.py b/src/evolution9/evolution/storage/storageActions.py index 08bb33a..0331f8a 100644 --- a/src/evolution9/evolution/storage/storageActions.py +++ b/src/evolution9/evolution/storage/storageActions.py @@ -1,6 +1,10 @@ -''' -Created on Oct 11, 2010 - -@author: ...
cagatay/Evolution-9
dc9b1a505874f6b40d43ba1b9c688ecd36e86f1b
veritabanı metodları
diff --git a/src/evolution9/evolution/storage/db.py b/src/evolution9/evolution/storage/db.py index 95da85c..302a7d3 100644 --- a/src/evolution9/evolution/storage/db.py +++ b/src/evolution9/evolution/storage/db.py @@ -1,22 +1,84 @@ -''' -Created on Oct 11, 2010 - -@author: cagatay.yuksel -''' - -from evolution9.constant...
cagatay/Evolution-9
609719bf718d078fd2f9488b2c419e54387fdc93
deneme
diff --git a/src/main.py b/src/main.py index 60a98f9..4f5a4c3 100644 --- a/src/main.py +++ b/src/main.py @@ -1,22 +1,22 @@ ''' -Created on Oct 5, 2010 +Created on Oct 6, 2010 @author: cagatay.yuksel ''' from random import randrange from random import random from evolution9.midi.midiActions import createMID...
cagatay/Evolution-9
3ff8820fed6c099b8b29dbd560f34c1963a44b80
@readme
diff --git a/README.txt b/README.txt index e69de29..1e5dcc6 100644 --- a/README.txt +++ b/README.txt @@ -0,0 +1 @@ +@readme \ No newline at end of file
cagatay/Evolution-9
4160303f7fd013a26dd91915813df380498db462
sqlite
diff --git a/data/evolution9.db b/data/evolution9.db new file mode 100644 index 0000000..721a01f Binary files /dev/null and b/data/evolution9.db differ diff --git a/output/output.mid b/output/output.mid index 2663aa9..4c6a97e 100644 Binary files a/output/output.mid and b/output/output.mid differ diff --git a/src/evolut...
cagatay/Evolution-9
316a4d19310f2ce1846ca456e4f468c1e7f5a6f2
basic db operations
diff --git a/.pydevproject b/.pydevproject index 92f334f..a8c8f2d 100644 --- a/.pydevproject +++ b/.pydevproject @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <?eclipse-pydev version="1.0"?> <pydev_project> -<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">python31</pyd...
cagatay/Evolution-9
2a193a82d96c8a918067da4bc0b6654b47a9171b
added license info
diff --git a/COPYING.txt b/COPYING.txt new file mode 100644 index 0000000..8cffccc --- /dev/null +++ b/COPYING.txt @@ -0,0 +1,13 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> + + Everyone is permitted to cop...
cagatay/Evolution-9
a80e7b5ba20264328b93cf73255941f144deaf52
composing random midi
diff --git a/src/midiutil/__init__.py b/src/evolution9/__init__.py similarity index 100% rename from src/midiutil/__init__.py rename to src/evolution9/__init__.py diff --git a/src/evolution9/constants.py b/src/evolution9/constants.py new file mode 100644 index 0000000..8950afc --- /dev/null +++ b/src/evolution9/constan...
cagatay/Evolution-9
04a47cf71277d4d648b9fc32e2c0934a78940b5f
plays midi
diff --git a/.project b/.project new file mode 100644 index 0000000..2507761 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>Evolution-9</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.python.pydev....
jeremybaumont/Oracle-puppet-module
5155dc16a8a44c0e38b65b6f4caea103786629b0
Add passwordless for dbwatch monitoring
diff --git a/modules/oracle/files/users/oracle/.ssh/authorized_keys b/modules/oracle/files/users/oracle/.ssh/authorized_keys index a9f2bef..dce1d96 100644 --- a/modules/oracle/files/users/oracle/.ssh/authorized_keys +++ b/modules/oracle/files/users/oracle/.ssh/authorized_keys @@ -1 +1,2 @@ ssh-rsa AAAAB3NzaC1yc2EAAAAB...
jeremybaumont/Oracle-puppet-module
02f03e98e14aa2505c0dc4853f87b11933a5cac1
Fix bug 000124 add PERL5LIB to unix env vars
diff --git a/modules/oracle/templates/bash_profile.oracle-template.erb b/modules/oracle/templates/bash_profile.oracle-template.erb index 169e54a..576589e 100644 --- a/modules/oracle/templates/bash_profile.oracle-template.erb +++ b/modules/oracle/templates/bash_profile.oracle-template.erb @@ -1,81 +1,82 @@ # Copyr...
jeremybaumont/Oracle-puppet-module
93d2ec09aab1a292ac4f4e2b42bb428609ad79db
Fix oracle user unix bash profile
diff --git a/modules/oracle/templates/bash_profile.oracle-template.erb b/modules/oracle/templates/bash_profile.oracle-template.erb index 261e86e..169e54a 100644 --- a/modules/oracle/templates/bash_profile.oracle-template.erb +++ b/modules/oracle/templates/bash_profile.oracle-template.erb @@ -1,79 +1,81 @@ # Copyr...
jeremybaumont/Oracle-puppet-module
f2930681ea448f579007b49375dd91eaf41aa1de
Fix bug 000122
diff --git a/modules/oracle/templates/wagentDownload-template.erb b/modules/oracle/templates/wagentDownload-template.erb index 9c2d951..f43d34e 100644 --- a/modules/oracle/templates/wagentDownload-template.erb +++ b/modules/oracle/templates/wagentDownload-template.erb @@ -1,79 +1,78 @@ #!/usr/bin/bash EXITCODE=1 ...
jeremybaumont/Oracle-puppet-module
3737114ef609267bceea51dc4cb6cecbd23aa2d8
Fix bug 000121 fix log file resource
diff --git a/modules/oracle/manifests/directories.pp b/modules/oracle/manifests/directories.pp index 28ace95..e6cd0c8 100644 --- a/modules/oracle/manifests/directories.pp +++ b/modules/oracle/manifests/directories.pp @@ -1,523 +1,523 @@ # directories.pp - oracle database server software 9i/10g # # Copyright (C...
jeremybaumont/Oracle-puppet-module
97384ca7f370e286284a72b6328a4388254d5902
Fix bug 000120 about sysdba group
diff --git a/modules/oracle/manifests/software.pp b/modules/oracle/manifests/software.pp index 77c4c63..195793e 100644 --- a/modules/oracle/manifests/software.pp +++ b/modules/oracle/manifests/software.pp @@ -1,493 +1,526 @@ # software.pp - oracle database server software 9i/10g # # Copyright (C) 2009 Jeremy B...
jeremybaumont/Oracle-puppet-module
17cb3510cae249acf5dba8196b9ade3d37904020
Delete display of Xsun process information at start
diff --git a/modules/oracle/files/users/oracle/bin/start_vfb.sh b/modules/oracle/files/users/oracle/bin/start_vfb.sh index 29c1cac..8359024 100755 --- a/modules/oracle/files/users/oracle/bin/start_vfb.sh +++ b/modules/oracle/files/users/oracle/bin/start_vfb.sh @@ -1,33 +1,34 @@ #!/usr/bin/bash XSUN=/usr/openwin/bin...
jeremybaumont/Oracle-puppet-module
b133d526b89d55a3d78da881065a3979cf6da060
Add install of oem agent
diff --git a/modules/oracle/files/users/oracle/bin/start_vfb.sh b/modules/oracle/files/users/oracle/bin/start_vfb.sh index 8aa9915..29c1cac 100755 --- a/modules/oracle/files/users/oracle/bin/start_vfb.sh +++ b/modules/oracle/files/users/oracle/bin/start_vfb.sh @@ -1,32 +1,33 @@ #!/usr/bin/bash XSUN=/usr/openwin/bin...
jeremybaumont/Oracle-puppet-module
2e35c8c5efe338f7d75d790f0cdcc2dd31084c9c
Add exec resource to install 10.2.0.4 software
diff --git a/modules/oracle/manifests/directories.pp b/modules/oracle/manifests/directories.pp index bc614cf..28ace95 100644 --- a/modules/oracle/manifests/directories.pp +++ b/modules/oracle/manifests/directories.pp @@ -1,522 +1,523 @@ # directories.pp - oracle database server software 9i/10g # # Copyright (C...
jeremybaumont/Oracle-puppet-module
c257529e46d0ff8b81ffe4f1200109f0ef74ea4e
Add product directory in oracle home path
diff --git a/modules/oracle/manifests/directories.pp b/modules/oracle/manifests/directories.pp index fa3513e..bc614cf 100644 --- a/modules/oracle/manifests/directories.pp +++ b/modules/oracle/manifests/directories.pp @@ -1,505 +1,522 @@ # directories.pp - oracle database server software 9i/10g # # Copyright (C...
jeremybaumont/Oracle-puppet-module
dc3e5e9a2eb8a6c773356e9b45499132ac495466
Add stop/start virtual frame buffer
diff --git a/modules/oracle/files/users/oracle/bin/start_vfb.sh b/modules/oracle/files/users/oracle/bin/start_vfb.sh new file mode 100755 index 0000000..8aa9915 --- /dev/null +++ b/modules/oracle/files/users/oracle/bin/start_vfb.sh @@ -0,0 +1,32 @@ +#!/usr/bin/bash + +XSUN=/usr/openwin/bin/Xsun +DATE=`date '+%y%m%d.%H%...
jeremybaumont/Oracle-puppet-module
02e3860c8c451461080c634517b2bd12d9962b7d
change oracle directories resources
diff --git a/modules/oracle/manifests/directories.pp b/modules/oracle/manifests/directories.pp index aab6144..fa3513e 100644 --- a/modules/oracle/manifests/directories.pp +++ b/modules/oracle/manifests/directories.pp @@ -1,358 +1,505 @@ # directories.pp - oracle database server software 9i/10g # # Copyright (C...
jeremybaumont/Oracle-puppet-module
afc026af8b49c94106c0169d967b36ec3db82345
Fixed oracle files from filebucket to module
diff --git a/manifests/nodes.pp b/manifests/nodes.pp index 7c1a688..4ad389a 100644 --- a/manifests/nodes.pp +++ b/manifests/nodes.pp @@ -1,28 +1,40 @@ # Copyright (C) 2009 Jeremy Baumont # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Publ...
jeremybaumont/Oracle-puppet-module
e24df5de96752f56fd32ab537fac53c59d84b2e2
Fixed DSL graph dependencies and wrapper scripts
diff --git a/modules/oracle/manifests/database_server.pp b/modules/oracle/manifests/database_server.pp index 3397a8a..1a05752 100644 --- a/modules/oracle/manifests/database_server.pp +++ b/modules/oracle/manifests/database_server.pp @@ -1,23 +1,21 @@ # database_server.pp - oracle database server software 9i/10g # ...
jeremybaumont/Oracle-puppet-module
d0d0df04724629bf760bdfad0d81ee8c7483cae3
Corrected include class ordering
diff --git a/manifests/nodes.pp b/manifests/nodes.pp index fcff523..7c1a688 100644 --- a/manifests/nodes.pp +++ b/manifests/nodes.pp @@ -1,28 +1,28 @@ # Copyright (C) 2009 Jeremy Baumont # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Publ...
jeremybaumont/Oracle-puppet-module
0361a8b7e611c83c68830f630b8c07a72bf4d3f1
Added exec resource to install 9.2.0.8 patchset
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f9bbced --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.[oa] +*~ +*.swp diff --git a/modules/oracle/manifests/database_server.pp b/modules/oracle/manifests/database_server.pp index 595f794..cefa4f5 100644 --- a/modules/oracle/manifests/database_...
jeremybaumont/Oracle-puppet-module
ab8ada61bcebd1bba567c8336425282f63900630
fix wrapped install oracle soft script
diff --git a/modules/oracle/manifests/database_server.pp b/modules/oracle/manifests/database_server.pp index 51e3597..595f794 100644 --- a/modules/oracle/manifests/database_server.pp +++ b/modules/oracle/manifests/database_server.pp @@ -1,514 +1,509 @@ # database_server.pp - oracle database server software 9i/10g ...
jeremybaumont/Oracle-puppet-module
2d7d5ffaea1910fbff4b00f72ecf824bbc77ca0f
fix X display requirement for X connection
diff --git a/modules/oracle/manifests/database_server.pp b/modules/oracle/manifests/database_server.pp index 809955d..51e3597 100644 --- a/modules/oracle/manifests/database_server.pp +++ b/modules/oracle/manifests/database_server.pp @@ -1,503 +1,514 @@ # database_server.pp - oracle database server software 9i/10g ...
jeremybaumont/Oracle-puppet-module
6944c0cffe74d71d6d6610959eaa55013050a929
add wrapper script that call the silent installer
diff --git a/modules/oracle/manifests/database_server.pp b/modules/oracle/manifests/database_server.pp index b625533..809955d 100644 --- a/modules/oracle/manifests/database_server.pp +++ b/modules/oracle/manifests/database_server.pp @@ -1,494 +1,503 @@ # database_server.pp - oracle database server software 9i/10g ...
jeremybaumont/Oracle-puppet-module
c93ea56fe13f3fd7c590c748168673655a470ef9
add exec resource to install oracle server soft
diff --git a/modules/oracle/manifests/database_server.pp b/modules/oracle/manifests/database_server.pp index 4c0f0db..b625533 100644 --- a/modules/oracle/manifests/database_server.pp +++ b/modules/oracle/manifests/database_server.pp @@ -1,432 +1,494 @@ # database_server.pp - oracle database server software 9i/10g ...
jeremybaumont/Oracle-puppet-module
036f79cd134139954a79afc4301f91008608b548
fix correct group oinstall to oracle directories
diff --git a/modules/oracle/manifests/database_server.pp b/modules/oracle/manifests/database_server.pp index 2a727ee..4c0f0db 100644 --- a/modules/oracle/manifests/database_server.pp +++ b/modules/oracle/manifests/database_server.pp @@ -1,432 +1,432 @@ # database_server.pp - oracle database server software 9i/10g ...
jeremybaumont/Oracle-puppet-module
1c4bed306174ba20817fd353172610d39d567839
add group oinstall to oracle user
diff --git a/manifests/nodes.pp b/manifests/nodes.pp index 9a02194..fcff523 100644 --- a/manifests/nodes.pp +++ b/manifests/nodes.pp @@ -1,28 +1,28 @@ # Copyright (C) 2009 Jeremy Baumont # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Publ...
jeremybaumont/Oracle-puppet-module
3a5b110027fb598c983e4848d145c1e490dfb484
add unix environment variables in oracle profile
diff --git a/modules/oracle/templates/bash_profile.oracle-template.erb b/modules/oracle/templates/bash_profile.oracle-template.erb index c370942..5ef2da1 100644 --- a/modules/oracle/templates/bash_profile.oracle-template.erb +++ b/modules/oracle/templates/bash_profile.oracle-template.erb @@ -1,78 +1,83 @@ # Copyr...
jeremybaumont/Oracle-puppet-module
7e9cbd1751077773f06b9d84d1e439703bfa7d96
fix issues on the system operating system profiles
diff --git a/manifests/site.pp b/manifests/site.pp index ffeb27a..6a05285 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -1,30 +1,32 @@ # Copyright (C) 2009 Jeremy Baumont # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public L...
jeremybaumont/Oracle-puppet-module
64b78147be1e72e71a660a6dea352063d7976feb
add the operating system profile
diff --git a/files/users/oracle/.bash_profile b/files/users/oracle/.bash_profile new file mode 100644 index 0000000..f23d5ad --- /dev/null +++ b/files/users/oracle/.bash_profile @@ -0,0 +1 @@ +source $HOME/.bash_profile.oracle diff --git a/files/users/oracle/.bashrc b/files/users/oracle/.bashrc new file mode 100644 ind...
jeremybaumont/Oracle-puppet-module
3db9286f61d5d4b69433dd9dd9a63b03efd33b5e
add directories resource to database server class
diff --git a/manifests/classes/solaris.pp b/manifests/classes/solaris.pp index 39ee378..7d283cc 100644 --- a/manifests/classes/solaris.pp +++ b/manifests/classes/solaris.pp @@ -1,19 +1,32 @@ # Copyright (C) 2009 Jeremy Baumont # # This program is free software: you can redistribute it and/or modify # it...
jeremybaumont/Oracle-puppet-module
5122bd6ec2044344d70923c6e3c5230ea769a289
add GPGv3 license header on top of files
diff --git a/fileserver.conf b/fileserver.conf index 19cccda..dfa6663 100644 --- a/fileserver.conf +++ b/fileserver.conf @@ -1,17 +1,33 @@ + +# Copyright (C) 2009 Jeremy Baumont +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License a...
jeremybaumont/Oracle-puppet-module
4ae3e5f218bd4d54bdca0e2d3449081912407996
add system packages resources and directories resources to oracle datbase_server class
diff --git a/manifests/classes/baseapps.pp b/manifests/classes/baseapps.pp index c10b7c8..93f724e 100644 --- a/manifests/classes/baseapps.pp +++ b/manifests/classes/baseapps.pp @@ -1,8 +1,20 @@ class baseapps { + case $operatingsystem { - $packagelist = ["vi","perl", "rubygems"] + solaris: { + ...
jeremybaumont/Oracle-puppet-module
8ede589904674ddaeb7474a5b3c9e57667893220
modify classes names by deleting redundant oracle pattern
diff --git a/modules/oracle/manifests/oracle_administrators.pp b/modules/oracle/manifests/administrators.pp similarity index 54% rename from modules/oracle/manifests/oracle_administrators.pp rename to modules/oracle/manifests/administrators.pp index 4b53830..90f6e33 100644 --- a/modules/oracle/manifests/oracle_administ...
jeremybaumont/Oracle-puppet-module
d6991b6266965cb6403161617f23c4cff7a21665
modify namespace of users and groups classes to take in account modularized configuration of oracle
diff --git a/modules/oracle/manifests/oracle_administrators.pp b/modules/oracle/manifests/oracle_administrators.pp index 177d877..4b53830 100644 --- a/modules/oracle/manifests/oracle_administrators.pp +++ b/modules/oracle/manifests/oracle_administrators.pp @@ -1,9 +1,9 @@ class oracle_administrators { - include vir...
jeremybaumont/Oracle-puppet-module
1e8f4d991a29d2322d13312776d98e67f17073cd
rename oracle_database_server class to database_server
diff --git a/modules/oracle/manifests/database_server.pp b/modules/oracle/manifests/database_server.pp new file mode 100644 index 0000000..92d584b --- /dev/null +++ b/modules/oracle/manifests/database_server.pp @@ -0,0 +1,3 @@ +class database_server { + include oracle::oracle_administrator +} diff --git a/modules/or...
jeremybaumont/Oracle-puppet-module
3f4bdf9bd3250e571f463ebceaed503fac9095e6
delete inheritance of virt_groups and virt_users classes
diff --git a/modules/oracle/manifests/virt_oracle_groups.pp b/modules/oracle/manifests/virt_oracle_groups.pp index 484f627..310ac11 100644 --- a/modules/oracle/manifests/virt_oracle_groups.pp +++ b/modules/oracle/manifests/virt_oracle_groups.pp @@ -1,12 +1,12 @@ -class virt_oracle_groups inherits virt_groups { +class v...
jeremybaumont/Oracle-puppet-module
bf3c8563b5e854d68bca1788f9c9da319649906c
modularized oracle manifests
diff --git a/modules/oracle/manifests/init.pp b/modules/oracle/manifests/init.pp new file mode 100644 index 0000000..e69de29 diff --git a/modules/oracle/manifests/oracle_administrators.pp b/modules/oracle/manifests/oracle_administrators.pp new file mode 100644 index 0000000..177d877 --- /dev/null +++ b/modules/oracle/m...
jeremybaumont/Oracle-puppet-module
dafd1556c11567e7c557236ead1448dfb3379a0e
initial import
diff --git a/fileserver.conf b/fileserver.conf new file mode 100644 index 0000000..19cccda --- /dev/null +++ b/fileserver.conf @@ -0,0 +1,17 @@ +# This file consists of arbitrarily named sections/modules +# defining where files are served from and to whom + +# Define a section 'files' +# Adapt the allow/deny settings t...
Br3nda/drupal-module-project_issue
4cb78ef969be37125c44e658e3cc3a672e4582c8
#934030 by drumm, dww: Add a blank slate for the 'Issue cockpit' in homebox.
diff --git a/project_issue.module b/project_issue.module index ddffb62..a3c25e7 100644 --- a/project_issue.module +++ b/project_issue.module @@ -1,514 +1,514 @@ <?php -// $Id: project_issue.module,v 1.186 2010/10/01 21:50:23 dww Exp $ +// $Id: project_issue.module,v 1.187 2010/10/09 00:31:31 dww Exp $ // issue node...
Br3nda/drupal-module-project_issue
2d9d2f94105d8e69344e4a4b74453cc694c2ee52
#932376 by dww: Fixed bug that could cross-pollinate default issue views and inject bogus sorts and filters into each other (made worse by [#921210]).
diff --git a/views/default_views/project_issue_all_projects.view.php b/views/default_views/project_issue_all_projects.view.php index a851405..dcc01d4 100644 --- a/views/default_views/project_issue_all_projects.view.php +++ b/views/default_views/project_issue_all_projects.view.php @@ -1,432 +1,434 @@ <?php -// $Id: pro...
Br3nda/drupal-module-project_issue
9c2b1644be09ce8b5412c13c51802efdfe990b04
#930664 by dww: Fixed the empty text on the 'Recent issues' block.
diff --git a/views/default_views/project_issue_project.view.php b/views/default_views/project_issue_project.view.php index 424ac10..d077d4e 100644 --- a/views/default_views/project_issue_project.view.php +++ b/views/default_views/project_issue_project.view.php @@ -1,581 +1,583 @@ <?php -// $Id: project_issue_project.v...
Br3nda/drupal-module-project_issue
9cd8f5ffa438a210ed57a9f3f0f03ea6b8026c09
#921210 by dww, nnewton: Optimize 'My issues' query using Tracker2 (#928110).
diff --git a/views/default_views/project_issue_user_issues.view.php b/views/default_views/project_issue_user_issues.view.php index 210fd78..96a25a7 100644 --- a/views/default_views/project_issue_user_issues.view.php +++ b/views/default_views/project_issue_user_issues.view.php @@ -1,579 +1,605 @@ <?php -// $Id: project...
Br3nda/drupal-module-project_issue
4a4a019c64fbb05aab069750d162232d69019f7a
#930610 by dww: Made the file scan for default views more restrictive.
diff --git a/views/project_issue.views_default.inc b/views/project_issue.views_default.inc index 9e17ec1..7e1273f 100644 --- a/views/project_issue.views_default.inc +++ b/views/project_issue.views_default.inc @@ -1,72 +1,72 @@ <?php -// $Id: project_issue.views_default.inc,v 1.49 2010/02/18 00:34:30 dww Exp $ +// $Id:...