├── .gitignore ├── Makefiles ├── Android │ ├── Makefile.android │ └── Makefile.smartkeyb ├── Bela │ └── Makefile.bela ├── Juce │ ├── Makefile.application │ ├── Makefile.jsynth │ └── Makefile.plug-in ├── Linux │ ├── Makefile.alsa-gtk-64bits │ ├── Makefile.alsa-qt-64bits │ ├── Makefile.csound-32bits │ ├── Makefile.csound-64bits │ ├── Makefile.dssi-32bits │ ├── Makefile.dssi-64bits │ ├── Makefile.jack-console-64bits │ ├── Makefile.jack-gtk-64bits │ ├── Makefile.jack-qt-64bits │ ├── Makefile.ladspa-32bits │ ├── Makefile.ladspa-64bits │ ├── Makefile.lv2-32bits │ ├── Makefile.lv2-64bits │ ├── Makefile.lv2-64bits-qt4 │ ├── Makefile.lv2-64bits-qt5 │ ├── Makefile.matlabplot-32bits │ ├── Makefile.matlabplot-64bits │ ├── Makefile.pure-64bits │ ├── Makefile.puredata-32bits │ ├── Makefile.puredata-64bits │ ├── Makefile.supercollider-64bits │ ├── Makefile.vst-32bits │ ├── Makefile.vst-64bits │ ├── Makefile.vst-64bits-qt4 │ └── Makefile.vst-64bits-qt5 ├── Makefile.none ├── OSX │ ├── Makefile.audio-unit │ ├── Makefile.coreaudio-qt │ ├── Makefile.coreaudio-qt-deployed │ ├── Makefile.csound │ ├── Makefile.jack-qt │ ├── Makefile.jack-qt-deployed │ ├── Makefile.max-msp │ ├── Makefile.puredata │ ├── Makefile.supercollider │ └── Makefile.vst ├── REMOVEDLINUXMAKEFILES │ ├── Makefile.alsa-gtk-32bits │ ├── Makefile.chuck-64bits │ ├── Makefile.jack-console-32bits │ ├── Makefile.jack-gtk-32bits │ └── Makefile.vsti_OSX ├── Raspberry │ ├── Makefile.alsa-http │ └── Makefile.netjack2-http ├── Ros │ ├── Makefile.ros-jack-cli │ └── Makefile.ros-jack-gtk ├── Unity │ ├── Makefile.ios │ ├── Makefile.osx │ └── Makefile.source ├── Web │ ├── Makefile.audio │ ├── Makefile.audio-code │ ├── Makefile.audio-pkg │ ├── Makefile.polyphonic │ ├── Makefile.polyphonic-code │ ├── Makefile.polyphonic-pkg │ ├── Makefile.wasm-audio │ ├── Makefile.wasm-audio-pkg │ ├── Makefile.wasm-polyphonic │ └── Makefile.wasm-polyphonic-pkg ├── Windows │ ├── Makefile.max-msp │ ├── Makefile.puredata │ ├── Makefile.vst │ └── Makefile.vsti └── WindowsMakefiles.tgz ├── README ├── README.md ├── bin ├── refreshOnlineCompiler ├── remoteOSX └── runInFaustEnv ├── catalog ├── Effects │ ├── capture │ │ ├── bandfilter.png │ │ ├── bandfilter_compr.png │ │ ├── compressor_compr.png │ │ ├── crybaby_compr.png │ │ ├── cubic_distortion.png │ │ ├── cubic_distortion_compr.png │ │ ├── echo.png │ │ ├── echo_compr.png │ │ ├── fbComb_compr.png │ │ ├── ffComb_compr.png │ │ ├── flanger_compr.png │ │ ├── freeverb.png │ │ ├── freeverb_compr.png │ │ ├── gate_compr.png │ │ ├── gate_compressor.png │ │ ├── gate_compressor_compr.png │ │ ├── graphic_eq.png │ │ ├── graphic_eq_compr.png │ │ ├── lfboost.png │ │ ├── lfboost_compr.png │ │ ├── lowboost.png │ │ ├── lowboost_compr.png │ │ ├── lowcut.png │ │ ├── lowcut_compr.png │ │ ├── moogVCF_compr.png │ │ ├── mth_octave_filterbank_compr.png │ │ ├── multibandfilter.png │ │ ├── multibandfilter_compr.png │ │ ├── notchw_compr.png │ │ ├── onePole_compr.png │ │ ├── oneZero_compr.png │ │ ├── phaser_compr.png │ │ ├── phaser_flanger.png │ │ ├── phaser_flanger_compr.png │ │ ├── pitch_shifter.png │ │ ├── pitch_shifter_compr.png │ │ ├── reverb_designer.png │ │ ├── reverb_designer_compr.png │ │ ├── smoothdelay.png │ │ ├── smoothdelay_compr.png │ │ ├── spectral_level.png │ │ ├── spectral_level_compr.png │ │ ├── stereoecho.png │ │ ├── stereoecho_compr.png │ │ ├── switcher.png │ │ ├── switcher_compr.png │ │ ├── tapiir.png │ │ ├── tapiir_compr.png │ │ ├── vcf_wah_pedals.png │ │ ├── vcf_wah_pedals_compr.png │ │ ├── wah4_compr.png │ │ ├── zita_rev1.png │ │ └── zita_rev1_compr.png │ ├── description │ │ ├── bandfilter.txt │ │ ├── compressor.txt │ │ ├── crybaby.txt │ │ ├── cubic_distortion.txt │ │ ├── echo.txt │ │ ├── fbComb.txt │ │ ├── ffComb.txt │ │ ├── flanger.txt │ │ ├── freeverb.txt │ │ ├── gate.txt │ │ ├── gate_compressor.txt │ │ ├── graphic_eq.txt │ │ ├── lfboost.txt │ │ ├── lowboost.txt │ │ ├── lowcut.txt │ │ ├── moogVCF.txt │ │ ├── mth_octave_filterbank.txt │ │ ├── multibandfilter.txt │ │ ├── notchw.txt │ │ ├── onePole.txt │ │ ├── oneZero.txt │ │ ├── phaser.txt │ │ ├── phaser_flanger.txt │ │ ├── pitch_shifter.txt │ │ ├── reverb_designer.txt │ │ ├── smoothdelay.txt │ │ ├── spectral_level.txt │ │ ├── stereoecho.txt │ │ ├── switcher.txt │ │ ├── tapiir.txt │ │ ├── vcf_wah_pedals.txt │ │ ├── wah4.txt │ │ └── zita_rev1.txt │ └── src │ │ ├── bandfilter.dsp │ │ ├── compressor.dsp │ │ ├── crybaby.dsp │ │ ├── cubic_distortion.dsp │ │ ├── echo.dsp │ │ ├── fbComb.dsp │ │ ├── ffComb.dsp │ │ ├── flanger.dsp │ │ ├── freeverb.dsp │ │ ├── gate.dsp │ │ ├── gate_compressor.dsp │ │ ├── graphic_eq.dsp │ │ ├── head │ │ ├── lfboost.dsp │ │ ├── lowboost.dsp │ │ ├── lowcut.dsp │ │ ├── moogVCF.dsp │ │ ├── mth_octave_filterbank.dsp │ │ ├── multibandfilter.dsp │ │ ├── notchw.dsp │ │ ├── onePole.dsp │ │ ├── oneZero.dsp │ │ ├── phaser.dsp │ │ ├── phaser_flanger.dsp │ │ ├── pitch_shifter.dsp │ │ ├── reverb_designer.dsp │ │ ├── smoothdelay.dsp │ │ ├── spectral_level.dsp │ │ ├── stereoecho.dsp │ │ ├── switcher.dsp │ │ ├── tapiir.dsp │ │ ├── vcf_wah_pedals.dsp │ │ ├── wah4.dsp │ │ └── zita_rev1.dsp ├── Faust-STK │ ├── capture │ │ ├── NLFeks.png │ │ ├── NLFeks_compr.png │ │ ├── NLFfm.png │ │ ├── NLFfm_compr.png │ │ ├── blowBottle.png │ │ ├── blowBottle_compr.png │ │ ├── blowHole.png │ │ ├── blowHole_compr.png │ │ ├── bowed.png │ │ ├── bowed_compr.png │ │ ├── brass.png │ │ ├── brass_compr.png │ │ ├── clarinet.png │ │ ├── clarinet_compr.png │ │ ├── flute.png │ │ ├── flute_compr.png │ │ ├── flutestk.png │ │ ├── flutestk_compr.png │ │ ├── glassHarmonica.png │ │ ├── glassHarmonica_compr.png │ │ ├── saxophony.png │ │ ├── saxophony_compr.png │ │ ├── sitar.png │ │ ├── sitar_compr.png │ │ ├── tibetanBowl.png │ │ ├── tibetanBowl_compr.png │ │ ├── tunedBar.png │ │ ├── tunedBar_compr.png │ │ ├── uniBar.png │ │ └── uniBar_compr.png │ ├── description │ │ ├── NLFeks.txt │ │ ├── NLFfm.txt │ │ ├── blowBottle.txt │ │ ├── blowHole.txt │ │ ├── bowed.txt │ │ ├── brass.txt │ │ ├── clarinet.txt │ │ ├── flute.txt │ │ ├── flutestk.txt │ │ ├── glassHarmonica.txt │ │ ├── saxophony.txt │ │ ├── sitar.txt │ │ ├── tibetanBowl.txt │ │ ├── tunedBar.txt │ │ └── uniBar.txt │ └── src │ │ ├── NLFeks.dsp │ │ ├── NLFfm.dsp │ │ ├── blowBottle.dsp │ │ ├── blowHole.dsp │ │ ├── bowed.dsp │ │ ├── brass.dsp │ │ ├── clarinet.dsp │ │ ├── flute.dsp │ │ ├── flutestk.dsp │ │ ├── glassHarmonica.dsp │ │ ├── saxophony.dsp │ │ ├── sitar.dsp │ │ ├── tibetanBowl.dsp │ │ ├── tunedBar.dsp │ │ └── uniBar.dsp ├── Synthesizers │ ├── capture │ │ ├── karplus.png │ │ ├── karplus32.png │ │ ├── karplus32_compr.png │ │ ├── karplus_compr.png │ │ ├── noise.png │ │ ├── noise_compr.png │ │ ├── osc.png │ │ ├── osc_compr.png │ │ ├── osci.png │ │ ├── osci_compr.png │ │ ├── oscrs_compr.png │ │ ├── pink_noise_compr.png │ │ └── sawtooth_compr.png │ ├── description │ │ ├── karplus.txt │ │ ├── karplus32.txt │ │ ├── noise.txt │ │ ├── osc.txt │ │ ├── osci.txt │ │ ├── oscrs.txt │ │ ├── pink_noise.txt │ │ └── sawtooth.txt │ └── src │ │ ├── karplus.dsp │ │ ├── karplus32.dsp │ │ ├── noise.dsp │ │ ├── osc.dsp │ │ ├── osci.dsp │ │ ├── oscrs.dsp │ │ ├── pink_noise.dsp │ │ └── sawtooth.dsp ├── Tools │ ├── capture │ │ ├── capture.png │ │ ├── capture_compr.png │ │ ├── dbmeter.png │ │ ├── dbmeter_compr.png │ │ ├── envelop.png │ │ ├── envelop_compr.png │ │ ├── matrix.png │ │ ├── matrix_compr.png │ │ ├── mixer.png │ │ ├── mixer_compr.png │ │ ├── mth_octave_spectral_level_compr.png │ │ ├── panpot.png │ │ ├── panpot_compr.png │ │ ├── spat.png │ │ ├── spat_compr.png │ │ ├── tester.png │ │ ├── tester_compr.png │ │ ├── volume.png │ │ ├── volume_compr.png │ │ ├── vumeter.png │ │ └── vumeter_compr.png │ ├── description │ │ ├── capture.txt │ │ ├── dbmeter.txt │ │ ├── envelop.txt │ │ ├── matrix.txt │ │ ├── mixer.txt │ │ ├── mth_octave_spectral_level.txt │ │ ├── panpot.txt │ │ ├── spat.txt │ │ ├── tester.txt │ │ ├── volume.txt │ │ └── vumeter.txt │ └── src │ │ ├── capture.dsp │ │ ├── dbmeter.dsp │ │ ├── envelop.dsp │ │ ├── matrix.dsp │ │ ├── mixer.dsp │ │ ├── mth_octave_spectral_level.dsp │ │ ├── panpot.dsp │ │ ├── spat.dsp │ │ ├── tester.dsp │ │ ├── volume.dsp │ │ └── vumeter.dsp ├── userEffects │ ├── capture │ │ ├── AmplitudeModulation_compr.png │ │ ├── Granulator_compr.png │ │ └── adder_compr.png │ ├── description │ │ ├── AmplitudeModulation.txt │ │ ├── Granulator.txt │ │ └── adder.txt │ ├── src │ │ ├── AmplitudeModulation.dsp │ │ ├── Granulator.dsp │ │ ├── adder.dsp │ │ └── deleted │ │ │ ├── Amplifiermodel.dsp_DEL_01-33-073013 │ │ │ ├── adderTest.dsp_DEL_10-03-051112 │ │ │ ├── adderTest.dsp_DEL_10-12-051112 │ │ │ ├── channelmixer.dsp_DEL_23-02-062513 │ │ │ ├── cierec.dsp_DEL_10-42-020712 │ │ │ ├── delayline.dsp_DEL_02-29-110612 │ │ │ ├── filter.dsp_DEL_08-24-073013 │ │ │ ├── two.dsp_DEL_20-07-020712 │ │ │ └── un.dsp_DEL_19-52-062612 │ └── uinfo │ │ ├── AmplitudeModulation.txt │ │ ├── Granulator.txt │ │ ├── adder.txt │ │ └── deleted │ │ ├── Amplifiermodel.txt_DEL_01-33-073013 │ │ ├── adderTest.txt_DEL_10-03-051112 │ │ ├── adderTest.txt_DEL_10-12-051112 │ │ ├── channelmixer.txt_DEL_23-02-062513 │ │ ├── cierec.txt_DEL_10-42-020712 │ │ ├── delayline.txt_DEL_02-29-110612 │ │ ├── filter.txt_DEL_08-24-073013 │ │ ├── two.txt_DEL_20-07-020712 │ │ └── un.txt_DEL_19-52-062612 ├── userSynthesizers │ ├── capture │ │ ├── ExGringo_compr.png │ │ ├── NMS_SAWTOOTH_compr.png │ │ ├── SawtoothADSRtutorial_compr.png │ │ ├── SquareWaveTutorial_compr.png │ │ └── tt.png │ ├── description │ │ ├── ExGringo.txt │ │ ├── NMS_SAWTOOTH.txt │ │ ├── SawtoothADSRtutorial.txt │ │ └── SquareWaveTutorial.txt │ ├── src │ │ ├── ExGringo.dsp │ │ ├── NMS_SAWTOOTH.dsp │ │ ├── SawtoothADSRtutorial.dsp │ │ ├── SquareWaveTutorial.dsp │ │ └── deleted │ │ │ ├── ExGringo.dsp_DEL_03-12-102513 │ │ │ ├── Harpe.dsp_DEL_19-12-040913 │ │ │ ├── one.dsp_DEL_17-30-020712 │ │ │ └── test.dsp_DEL_06-34-102413 │ └── uinfo │ │ ├── ExGringo.txt │ │ ├── NMS_SAWTOOTH.txt │ │ ├── SawtoothADSRtutorial.txt │ │ ├── SquareWaveTutorial.txt │ │ └── deleted │ │ ├── ExGringo.txt_DEL_03-12-102513 │ │ ├── Harpe.txt_DEL_19-12-040913 │ │ ├── one.txt_DEL_17-30-020712 │ │ └── test.txt_DEL_06-34-102413 └── userTools │ ├── capture │ ├── Capture du 2013-05-14 02:21:39.png │ ├── MidSideMixer_compr.png │ ├── mult_compr.png │ ├── tutSimpleAmplifier_compr.png │ └── tutSimpleDelay_compr.png │ ├── description │ ├── MidSideMixer.txt │ ├── mult.txt │ ├── tutSimpleAmplifier.txt │ └── tutSimpleDelay.txt │ ├── src │ ├── MidSideMixer.dsp │ ├── deleted │ │ ├── 2channelMonoAmp.dsp_DEL_08-25-073013 │ │ ├── MSdecoder.dsp_DEL_15-55-052013 │ │ ├── add.dsp_DEL_18-00-022912 │ │ ├── delayline.dsp_DEL_11-17-071813 │ │ ├── lr2ms.dsp_DEL_01-41-073013 │ │ ├── sub.dsp_DEL_17-03-022912 │ │ ├── troul.dsp_DEL_21-41-040212 │ │ ├── tt.dsp_DEL_17-13-022912 │ │ ├── tutSimpleAmplifier.dsp_DEL_17-09-041613 │ │ ├── tutSineModBass.dsp_DEL_08-25-073013 │ │ ├── tutSquareModBass.dsp_DEL_01-37-073013 │ │ └── tutSquareModBassFiltered.dsp_DEL_01-37-073013 │ ├── mult.dsp │ ├── tutSimpleAmplifier.dsp │ └── tutSimpleDelay.dsp │ └── uinfo │ ├── MidSideMixer.txt │ ├── deleted │ ├── 2channelMonoAmp.txt_DEL_08-25-073013 │ ├── MSdecoder.txt_DEL_15-55-052013 │ ├── add.txt_DEL_18-00-022912 │ ├── delayline.txt_DEL_11-17-071813 │ ├── lr2ms.txt_DEL_01-41-073013 │ ├── sub.txt_DEL_16-43-022912 │ ├── sub.txt_DEL_17-03-022912 │ ├── troul.txt_DEL_21-41-040212 │ ├── tt.txt_DEL_17-13-022912 │ ├── tutSimpleAmplifier.txt_DEL_17-09-041613 │ ├── tutSineModBass.txt_DEL_08-25-073013 │ ├── tutSquareModBass.txt_DEL_01-37-073013 │ └── tutSquareModBassFiltered.txt_DEL_01-37-073013 │ ├── mult.txt │ ├── tutSimpleAmplifier.txt │ └── tutSimpleDelay.txt ├── codemirror ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── addon │ ├── comment │ │ ├── comment.js │ │ └── continuecomment.js │ ├── dialog │ │ ├── dialog.css │ │ └── dialog.js │ ├── display │ │ ├── autorefresh.js │ │ ├── fullscreen.css │ │ ├── fullscreen.js │ │ ├── panel.js │ │ ├── placeholder.js │ │ └── rulers.js │ ├── edit │ │ ├── closebrackets.js │ │ ├── closetag.js │ │ ├── continuelist.js │ │ ├── matchbrackets.js │ │ ├── matchtags.js │ │ └── trailingspace.js │ ├── fold │ │ ├── brace-fold.js │ │ ├── comment-fold.js │ │ ├── foldcode.js │ │ ├── foldgutter.css │ │ ├── foldgutter.js │ │ ├── indent-fold.js │ │ ├── markdown-fold.js │ │ └── xml-fold.js │ ├── hint │ │ ├── anyword-hint.js │ │ ├── css-hint.js │ │ ├── html-hint.js │ │ ├── javascript-hint.js │ │ ├── show-hint.css │ │ ├── show-hint.js │ │ ├── sql-hint.js │ │ └── xml-hint.js │ ├── lint │ │ ├── coffeescript-lint.js │ │ ├── css-lint.js │ │ ├── html-lint.js │ │ ├── javascript-lint.js │ │ ├── json-lint.js │ │ ├── lint.css │ │ ├── lint.js │ │ └── yaml-lint.js │ ├── merge │ │ ├── merge.css │ │ └── merge.js │ ├── mode │ │ ├── loadmode.js │ │ ├── multiplex.js │ │ ├── multiplex_test.js │ │ ├── overlay.js │ │ └── simple.js │ ├── runmode │ │ ├── colorize.js │ │ ├── runmode-standalone.js │ │ ├── runmode.js │ │ └── runmode.node.js │ ├── scroll │ │ ├── annotatescrollbar.js │ │ ├── scrollpastend.js │ │ ├── simplescrollbars.css │ │ └── simplescrollbars.js │ ├── search │ │ ├── match-highlighter.js │ │ ├── matchesonscrollbar.css │ │ ├── matchesonscrollbar.js │ │ ├── search.js │ │ └── searchcursor.js │ ├── selection │ │ ├── active-line.js │ │ ├── mark-selection.js │ │ └── selection-pointer.js │ ├── tern │ │ ├── tern.css │ │ ├── tern.js │ │ └── worker.js │ └── wrap │ │ └── hardwrap.js ├── bin │ ├── authors.sh │ ├── compress │ ├── lint │ ├── release │ └── source-highlight ├── bower.json ├── demo │ ├── activeline.html │ ├── anywordhint.html │ ├── bidi.html │ ├── btree.html │ ├── buffers.html │ ├── changemode.html │ ├── closebrackets.html │ ├── closetag.html │ ├── complete.html │ ├── emacs.html │ ├── folding.html │ ├── fullscreen.html │ ├── hardwrap.html │ ├── html5complete.html │ ├── indentwrap.html │ ├── lint.html │ ├── loadmode.html │ ├── marker.html │ ├── markselection.html │ ├── matchhighlighter.html │ ├── matchtags.html │ ├── merge.html │ ├── multiplex.html │ ├── mustache.html │ ├── panel.html │ ├── placeholder.html │ ├── preview.html │ ├── requirejs.html │ ├── resize.html │ ├── rulers.html │ ├── runmode.html │ ├── search.html │ ├── simplemode.html │ ├── simplescrollbars.html │ ├── spanaffectswrapping_shim.html │ ├── sublime.html │ ├── tern.html │ ├── theme.html │ ├── trailingspace.html │ ├── variableheight.html │ ├── vim.html │ ├── visibletabs.html │ ├── widget.html │ └── xmlcomplete.html ├── doc │ ├── activebookmark.js │ ├── compress.html │ ├── docs.css │ ├── internals.html │ ├── logo.png │ ├── logo.svg │ ├── manual.html │ ├── realworld.html │ ├── releases.html │ ├── reporting.html │ ├── upgrade_v2.2.html │ ├── upgrade_v3.html │ ├── upgrade_v4.html │ └── yinyang.png ├── index.html ├── keymap │ ├── emacs.js │ ├── sublime.js │ └── vim.js ├── lib │ ├── codemirror.css │ └── codemirror.js ├── mode │ ├── apl │ │ ├── apl.js │ │ └── index.html │ ├── asciiarmor │ │ ├── asciiarmor.js │ │ └── index.html │ ├── asn.1 │ │ ├── asn.1.js │ │ └── index.html │ ├── asterisk │ │ ├── asterisk.js │ │ └── index.html │ ├── brainfuck │ │ ├── brainfuck.js │ │ └── index.html │ ├── clike │ │ ├── clike.js │ │ ├── index.html │ │ ├── scala.html │ │ └── test.js │ ├── clojure │ │ ├── clojure.js │ │ └── index.html │ ├── cmake │ │ ├── cmake.js │ │ └── index.html │ ├── cobol │ │ ├── cobol.js │ │ └── index.html │ ├── coffeescript │ │ ├── coffeescript.js │ │ └── index.html │ ├── commonlisp │ │ ├── commonlisp.js │ │ └── index.html │ ├── css │ │ ├── css.js │ │ ├── gss.html │ │ ├── gss_test.js │ │ ├── index.html │ │ ├── less.html │ │ ├── less_test.js │ │ ├── scss.html │ │ ├── scss_test.js │ │ └── test.js │ ├── cypher │ │ ├── cypher.js │ │ └── index.html │ ├── d │ │ ├── d.js │ │ └── index.html │ ├── dart │ │ ├── dart.js │ │ └── index.html │ ├── diff │ │ ├── diff.js │ │ └── index.html │ ├── django │ │ ├── django.js │ │ └── index.html │ ├── dockerfile │ │ ├── dockerfile.js │ │ └── index.html │ ├── dtd │ │ ├── dtd.js │ │ └── index.html │ ├── dylan │ │ ├── dylan.js │ │ └── index.html │ ├── ebnf │ │ ├── ebnf.js │ │ └── index.html │ ├── ecl │ │ ├── ecl.js │ │ └── index.html │ ├── eiffel │ │ ├── eiffel.js │ │ └── index.html │ ├── elm │ │ ├── elm.js │ │ └── index.html │ ├── erlang │ │ ├── erlang.js │ │ └── index.html │ ├── factor │ │ ├── factor.js │ │ └── index.html │ ├── faust │ │ ├── faust.js │ │ └── index.html │ ├── faustOLD │ │ ├── faust.js │ │ └── index.html │ ├── forth │ │ ├── forth.js │ │ └── index.html │ ├── fortran │ │ ├── fortran.js │ │ └── index.html │ ├── gas │ │ ├── gas.js │ │ └── index.html │ ├── gfm │ │ ├── gfm.js │ │ ├── index.html │ │ └── test.js │ ├── gherkin │ │ ├── gherkin.js │ │ └── index.html │ ├── go │ │ ├── go.js │ │ └── index.html │ ├── groovy │ │ ├── groovy.js │ │ └── index.html │ ├── haml │ │ ├── haml.js │ │ ├── index.html │ │ └── test.js │ ├── handlebars │ │ ├── handlebars.js │ │ └── index.html │ ├── haskell │ │ ├── haskell.js │ │ └── index.html │ ├── haxe │ │ ├── haxe.js │ │ └── index.html │ ├── htmlembedded │ │ ├── htmlembedded.js │ │ └── index.html │ ├── htmlmixed │ │ ├── htmlmixed.js │ │ └── index.html │ ├── http │ │ ├── http.js │ │ └── index.html │ ├── idl │ │ ├── idl.js │ │ └── index.html │ ├── index.html │ ├── jade │ │ ├── index.html │ │ └── jade.js │ ├── javascript │ │ ├── index.html │ │ ├── javascript.js │ │ ├── json-ld.html │ │ ├── test.js │ │ └── typescript.html │ ├── jinja2 │ │ ├── index.html │ │ └── jinja2.js │ ├── julia │ │ ├── index.html │ │ └── julia.js │ ├── kotlin │ │ ├── index.html │ │ └── kotlin.js │ ├── livescript │ │ ├── index.html │ │ └── livescript.js │ ├── lua │ │ ├── index.html │ │ └── lua.js │ ├── markdown │ │ ├── index.html │ │ ├── markdown.js │ │ └── test.js │ ├── mathematica │ │ ├── index.html │ │ └── mathematica.js │ ├── meta.js │ ├── mirc │ │ ├── index.html │ │ └── mirc.js │ ├── mllike │ │ ├── index.html │ │ └── mllike.js │ ├── modelica │ │ ├── index.html │ │ └── modelica.js │ ├── mumps │ │ ├── index.html │ │ └── mumps.js │ ├── nginx │ │ ├── index.html │ │ └── nginx.js │ ├── ntriples │ │ ├── index.html │ │ └── ntriples.js │ ├── octave │ │ ├── index.html │ │ └── octave.js │ ├── pascal │ │ ├── index.html │ │ └── pascal.js │ ├── pegjs │ │ ├── index.html │ │ └── pegjs.js │ ├── perl │ │ ├── index.html │ │ └── perl.js │ ├── php │ │ ├── index.html │ │ ├── php.js │ │ └── test.js │ ├── pig │ │ ├── index.html │ │ └── pig.js │ ├── properties │ │ ├── index.html │ │ └── properties.js │ ├── puppet │ │ ├── index.html │ │ └── puppet.js │ ├── python │ │ ├── index.html │ │ └── python.js │ ├── q │ │ ├── index.html │ │ └── q.js │ ├── r │ │ ├── index.html │ │ └── r.js │ ├── rpm │ │ ├── changes │ │ │ └── index.html │ │ ├── index.html │ │ └── rpm.js │ ├── rst │ │ ├── index.html │ │ └── rst.js │ ├── ruby │ │ ├── index.html │ │ ├── ruby.js │ │ └── test.js │ ├── rust │ │ ├── index.html │ │ ├── rust.js │ │ └── test.js │ ├── sass │ │ ├── index.html │ │ └── sass.js │ ├── scheme │ │ ├── index.html │ │ └── scheme.js │ ├── shell │ │ ├── index.html │ │ ├── shell.js │ │ └── test.js │ ├── sieve │ │ ├── index.html │ │ └── sieve.js │ ├── slim │ │ ├── index.html │ │ ├── slim.js │ │ └── test.js │ ├── smalltalk │ │ ├── index.html │ │ └── smalltalk.js │ ├── smarty │ │ ├── index.html │ │ └── smarty.js │ ├── solr │ │ ├── index.html │ │ └── solr.js │ ├── soy │ │ ├── index.html │ │ └── soy.js │ ├── sparql │ │ ├── index.html │ │ └── sparql.js │ ├── spreadsheet │ │ ├── index.html │ │ └── spreadsheet.js │ ├── sql │ │ ├── index.html │ │ └── sql.js │ ├── stex │ │ ├── index.html │ │ ├── stex.js │ │ └── test.js │ ├── stylus │ │ ├── index.html │ │ └── stylus.js │ ├── swift │ │ ├── index.html │ │ └── swift.js │ ├── tcl │ │ ├── index.html │ │ └── tcl.js │ ├── textile │ │ ├── index.html │ │ ├── test.js │ │ └── textile.js │ ├── tiddlywiki │ │ ├── index.html │ │ ├── tiddlywiki.css │ │ └── tiddlywiki.js │ ├── tiki │ │ ├── index.html │ │ ├── tiki.css │ │ └── tiki.js │ ├── toml │ │ ├── index.html │ │ └── toml.js │ ├── tornado │ │ ├── index.html │ │ └── tornado.js │ ├── troff │ │ ├── index.html │ │ └── troff.js │ ├── ttcn-cfg │ │ ├── index.html │ │ └── ttcn-cfg.js │ ├── ttcn │ │ ├── index.html │ │ └── ttcn.js │ ├── turtle │ │ ├── index.html │ │ └── turtle.js │ ├── twig │ │ ├── index.html │ │ └── twig.js │ ├── vb │ │ ├── index.html │ │ └── vb.js │ ├── vbscript │ │ ├── index.html │ │ └── vbscript.js │ ├── velocity │ │ ├── index.html │ │ └── velocity.js │ ├── verilog │ │ ├── index.html │ │ ├── test.js │ │ └── verilog.js │ ├── vhdl │ │ ├── index.html │ │ └── vhdl.js │ ├── vue │ │ ├── index.html │ │ └── vue.js │ ├── xml │ │ ├── index.html │ │ ├── test.js │ │ └── xml.js │ ├── xquery │ │ ├── index.html │ │ ├── test.js │ │ └── xquery.js │ ├── yaml │ │ ├── index.html │ │ └── yaml.js │ └── z80 │ │ ├── index.html │ │ └── z80.js ├── package.json ├── test │ ├── comment_test.js │ ├── doc_test.js │ ├── driver.js │ ├── emacs_test.js │ ├── index.html │ ├── lint.js │ ├── mode_test.css │ ├── mode_test.js │ ├── multi_test.js │ ├── phantom_driver.js │ ├── run.js │ ├── scroll_test.js │ ├── search_test.js │ ├── sql-hint-test.js │ ├── sublime_test.js │ ├── test.js │ └── vim_test.js └── theme │ ├── 3024-day.css │ ├── 3024-night.css │ ├── abcdef.css │ ├── ambiance-mobile.css │ ├── ambiance.css │ ├── base16-dark.css │ ├── base16-light.css │ ├── blackboard.css │ ├── cobalt.css │ ├── colorforth.css │ ├── dracula.css │ ├── eclipse.css │ ├── elegant.css │ ├── erlang-dark.css │ ├── icecoder.css │ ├── lesser-dark.css │ ├── liquibyte.css │ ├── material.css │ ├── mbo.css │ ├── mdn-like.css │ ├── midnight.css │ ├── monokai.css │ ├── neat.css │ ├── neo.css │ ├── night.css │ ├── paraiso-dark.css │ ├── paraiso-light.css │ ├── pastel-on-dark.css │ ├── rubyblue.css │ ├── seti.css │ ├── solarized.css │ ├── the-matrix.css │ ├── tomorrow-night-bright.css │ ├── tomorrow-night-eighties.css │ ├── ttcn.css │ ├── twilight.css │ ├── vibrant-ink.css │ ├── xq-dark.css │ ├── xq-light.css │ ├── yeti.css │ └── zenburn.css ├── compilation_faust.php ├── compiler-large.html ├── compiler.html ├── display_svg.php ├── erreur.html ├── favicon.ico ├── fileDroped.php ├── full_screen.php ├── goto_SVG.php ├── goto_codeC.php ├── goto_codeFaust.php ├── goto_exec.php ├── goto_mdoc.php ├── images ├── AutoDoc-large.png ├── AutoDoc.png ├── CppCode-large.png ├── CppCode-large.png.bckup ├── CppCode.png ├── ExecFile-large.png ├── ExecFile.png ├── FaustCode-large.png ├── FaustCode.png ├── SvgDiag-large.png ├── SvgDiag.png ├── captureDef.png ├── element │ └── README ├── frame-large.png ├── frame.png ├── fullScreen-large.png ├── fullScreen.png ├── helpButton.png ├── hideCatalog.png ├── hideSaver.png ├── icon.ico ├── navigation.png ├── refreshButton.png ├── saveButton.png ├── showCatalog.png ├── showSaver.png └── voteButton.png ├── inc ├── architectures.txt ├── architectures3.txt └── mess.inc ├── index.php ├── index2.php ├── js ├── jquery.js ├── jqueryui │ ├── css │ │ └── smoothness │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.8.16.custom.css │ ├── development-bundle │ │ ├── AUTHORS.txt │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── demos │ │ │ ├── accordion │ │ │ │ ├── collapsible.html │ │ │ │ ├── custom-icons.html │ │ │ │ ├── default.html │ │ │ │ ├── fillspace.html │ │ │ │ ├── hoverintent.html │ │ │ │ ├── index.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── no-auto-height.html │ │ │ │ └── sortable.html │ │ │ ├── addClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── animate │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── autocomplete │ │ │ │ ├── categories.html │ │ │ │ ├── combobox.html │ │ │ │ ├── custom-data.html │ │ │ │ ├── default.html │ │ │ │ ├── folding.html │ │ │ │ ├── images │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ ├── index.html │ │ │ │ ├── london.xml │ │ │ │ ├── maxheight.html │ │ │ │ ├── multiple-remote.html │ │ │ │ ├── multiple.html │ │ │ │ ├── remote-jsonp.html │ │ │ │ ├── remote-with-cache.html │ │ │ │ ├── remote.html │ │ │ │ ├── search.php │ │ │ │ └── xml.html │ │ │ ├── button │ │ │ │ ├── checkbox.html │ │ │ │ ├── default.html │ │ │ │ ├── icons.html │ │ │ │ ├── index.html │ │ │ │ ├── radio.html │ │ │ │ ├── splitbutton.html │ │ │ │ └── toolbar.html │ │ │ ├── datepicker │ │ │ │ ├── alt-field.html │ │ │ │ ├── animation.html │ │ │ │ ├── buttonbar.html │ │ │ │ ├── date-formats.html │ │ │ │ ├── date-range.html │ │ │ │ ├── default.html │ │ │ │ ├── dropdown-month-year.html │ │ │ │ ├── icon-trigger.html │ │ │ │ ├── images │ │ │ │ │ └── calendar.gif │ │ │ │ ├── index.html │ │ │ │ ├── inline.html │ │ │ │ ├── localization.html │ │ │ │ ├── min-max.html │ │ │ │ ├── multiple-calendars.html │ │ │ │ ├── other-months.html │ │ │ │ └── show-week.html │ │ │ ├── demos.css │ │ │ ├── dialog │ │ │ │ ├── animated.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── modal-confirmation.html │ │ │ │ ├── modal-form.html │ │ │ │ ├── modal-message.html │ │ │ │ └── modal.html │ │ │ ├── draggable │ │ │ │ ├── constrain-movement.html │ │ │ │ ├── cursor-style.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── events.html │ │ │ │ ├── handle.html │ │ │ │ ├── index.html │ │ │ │ ├── revert.html │ │ │ │ ├── scroll.html │ │ │ │ ├── snap-to.html │ │ │ │ ├── sortable.html │ │ │ │ └── visual-feedback.html │ │ │ ├── droppable │ │ │ │ ├── accepted-elements.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ ├── index.html │ │ │ │ ├── photo-manager.html │ │ │ │ ├── propagation.html │ │ │ │ ├── revert.html │ │ │ │ ├── shopping-cart.html │ │ │ │ └── visual-feedback.html │ │ │ ├── effect │ │ │ │ ├── default.html │ │ │ │ ├── easing.html │ │ │ │ └── index.html │ │ │ ├── hide │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── images │ │ │ │ ├── calendar.gif │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ ├── demo-config-on.gif │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ ├── icon-docs-info.gif │ │ │ │ └── pbar-ani.gif │ │ │ ├── index.html │ │ │ ├── position │ │ │ │ ├── cycler.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ ├── earth.jpg │ │ │ │ │ ├── flight.jpg │ │ │ │ │ └── rocket.jpg │ │ │ │ └── index.html │ │ │ ├── progressbar │ │ │ │ ├── animated.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── index.html │ │ │ │ └── resize.html │ │ │ ├── removeClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── resizable │ │ │ │ ├── animate.html │ │ │ │ ├── aspect-ratio.html │ │ │ │ ├── constrain-area.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── helper.html │ │ │ │ ├── index.html │ │ │ │ ├── max-min.html │ │ │ │ ├── snap-to-grid.html │ │ │ │ ├── synchronous-resize.html │ │ │ │ ├── textarea.html │ │ │ │ └── visual-feedback.html │ │ │ ├── selectable │ │ │ │ ├── default.html │ │ │ │ ├── display-grid.html │ │ │ │ ├── index.html │ │ │ │ └── serialize.html │ │ │ ├── show │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── slider │ │ │ │ ├── colorpicker.html │ │ │ │ ├── default.html │ │ │ │ ├── hotelrooms.html │ │ │ │ ├── index.html │ │ │ │ ├── multiple-vertical.html │ │ │ │ ├── range-vertical.html │ │ │ │ ├── range.html │ │ │ │ ├── rangemax.html │ │ │ │ ├── rangemin.html │ │ │ │ ├── side-scroll.html │ │ │ │ ├── slider-vertical.html │ │ │ │ ├── steps.html │ │ │ │ └── tabs.html │ │ │ ├── sortable │ │ │ │ ├── connect-lists-through-tabs.html │ │ │ │ ├── connect-lists.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── display-grid.html │ │ │ │ ├── empty-lists.html │ │ │ │ ├── index.html │ │ │ │ ├── items.html │ │ │ │ ├── placeholder.html │ │ │ │ └── portlets.html │ │ │ ├── switchClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── tabs │ │ │ │ ├── ajax.html │ │ │ │ ├── ajax │ │ │ │ │ ├── content1.html │ │ │ │ │ ├── content2.html │ │ │ │ │ ├── content3-slow.php │ │ │ │ │ └── content4-broken.php │ │ │ │ ├── bottom.html │ │ │ │ ├── collapsible.html │ │ │ │ ├── cookie.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── manipulation.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── sortable.html │ │ │ │ └── vertical.html │ │ │ ├── toggle │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ └── toggleClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ ├── docs │ │ │ ├── accordion.html │ │ │ ├── addClass.html │ │ │ ├── animate.html │ │ │ ├── autocomplete.html │ │ │ ├── button.html │ │ │ ├── datepicker.html │ │ │ ├── dialog.html │ │ │ ├── draggable.html │ │ │ ├── droppable.html │ │ │ ├── effect.html │ │ │ ├── hide.html │ │ │ ├── position.html │ │ │ ├── progressbar.html │ │ │ ├── removeClass.html │ │ │ ├── resizable.html │ │ │ ├── selectable.html │ │ │ ├── show.html │ │ │ ├── slider.html │ │ │ ├── sortable.html │ │ │ ├── switchClass.html │ │ │ ├── tabs.html │ │ │ ├── toggle.html │ │ │ └── toggleClass.html │ │ ├── external │ │ │ ├── jquery.bgiframe-2.1.2.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.metadata.js │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ ├── jquery-1.6.2.js │ │ ├── themes │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ └── jquery.ui.theme.css │ │ │ └── smoothness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui-1.8.16.custom.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ └── jquery.ui.theme.css │ │ ├── ui │ │ │ ├── i18n │ │ │ │ ├── jquery-ui-i18n.js │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-kz.js │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tj.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ ├── jquery-ui-1.8.16.custom.js │ │ │ ├── jquery.effects.blind.js │ │ │ ├── jquery.effects.bounce.js │ │ │ ├── jquery.effects.clip.js │ │ │ ├── jquery.effects.core.js │ │ │ ├── jquery.effects.drop.js │ │ │ ├── jquery.effects.explode.js │ │ │ ├── jquery.effects.fade.js │ │ │ ├── jquery.effects.fold.js │ │ │ ├── jquery.effects.highlight.js │ │ │ ├── jquery.effects.pulsate.js │ │ │ ├── jquery.effects.scale.js │ │ │ ├── jquery.effects.shake.js │ │ │ ├── jquery.effects.slide.js │ │ │ ├── jquery.effects.transfer.js │ │ │ ├── jquery.ui.accordion.js │ │ │ ├── jquery.ui.autocomplete.js │ │ │ ├── jquery.ui.button.js │ │ │ ├── jquery.ui.core.js │ │ │ ├── jquery.ui.datepicker.js │ │ │ ├── jquery.ui.dialog.js │ │ │ ├── jquery.ui.draggable.js │ │ │ ├── jquery.ui.droppable.js │ │ │ ├── jquery.ui.mouse.js │ │ │ ├── jquery.ui.position.js │ │ │ ├── jquery.ui.progressbar.js │ │ │ ├── jquery.ui.resizable.js │ │ │ ├── jquery.ui.selectable.js │ │ │ ├── jquery.ui.slider.js │ │ │ ├── jquery.ui.sortable.js │ │ │ ├── jquery.ui.tabs.js │ │ │ ├── jquery.ui.widget.js │ │ │ └── minified │ │ │ │ ├── jquery.effects.blind.min.js │ │ │ │ ├── jquery.effects.bounce.min.js │ │ │ │ ├── jquery.effects.clip.min.js │ │ │ │ ├── jquery.effects.core.min.js │ │ │ │ ├── jquery.effects.drop.min.js │ │ │ │ ├── jquery.effects.explode.min.js │ │ │ │ ├── jquery.effects.fade.min.js │ │ │ │ ├── jquery.effects.fold.min.js │ │ │ │ ├── jquery.effects.highlight.min.js │ │ │ │ ├── jquery.effects.pulsate.min.js │ │ │ │ ├── jquery.effects.scale.min.js │ │ │ │ ├── jquery.effects.shake.min.js │ │ │ │ ├── jquery.effects.slide.min.js │ │ │ │ ├── jquery.effects.transfer.min.js │ │ │ │ ├── jquery.ui.accordion.min.js │ │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ │ ├── jquery.ui.button.min.js │ │ │ │ ├── jquery.ui.core.min.js │ │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ │ ├── jquery.ui.dialog.min.js │ │ │ │ ├── jquery.ui.draggable.min.js │ │ │ │ ├── jquery.ui.droppable.min.js │ │ │ │ ├── jquery.ui.mouse.min.js │ │ │ │ ├── jquery.ui.position.min.js │ │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ │ ├── jquery.ui.resizable.min.js │ │ │ │ ├── jquery.ui.selectable.min.js │ │ │ │ ├── jquery.ui.slider.min.js │ │ │ │ ├── jquery.ui.sortable.min.js │ │ │ │ ├── jquery.ui.tabs.min.js │ │ │ │ └── jquery.ui.widget.min.js │ │ └── version.txt │ ├── index.html │ └── js │ │ ├── jquery-1.6.2.min.js │ │ └── jquery-ui-1.8.16.custom.min.js └── uploadDrag.js ├── logs ├── acces_logs ├── error_logs └── stats ├── normalize.css ├── php ├── #make_element.php# ├── env.php ├── erreur.html ├── form.php ├── functions.php ├── getfile.php ├── make_element.php └── update.php ├── result_compilation_C.php ├── result_compilation_faust.php ├── result_compilation_mdoc.php ├── scripts ├── #faust2impulsei# ├── clean_old_sessions ├── faust2impulse ├── faust2impulse.back ├── faust2impulse.back1 ├── faust2impulsei ├── liste_enrobages ├── liste_enrobages_exec ├── liste_exemples ├── maj_bd ├── matlabplot.cpp ├── new_session ├── qrize └── remove_example ├── specLength ├── styles-large.css ├── styles.css ├── tmp └── readme └── who.php /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.o 3 | doxygen2 4 | *backup* 5 | 6 | 7 | -------------------------------------------------------------------------------- /Makefiles/WindowsMakefiles.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/Makefiles/WindowsMakefiles.tgz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # onlinecompiler 2 | Faust Online Compiler 3 | -------------------------------------------------------------------------------- /bin/refreshOnlineCompiler: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # checks we have valid source and destination directories 4 | if [ -d "$1" ]; then 5 | if [ -d "$2" ]; then 6 | # store current directory 7 | CWD=`pwd` 8 | # compute destination directory 9 | cd "$2" 10 | DSTD=`pwd` 11 | # update from onlineCompiler repository 12 | cd "$CWD" 13 | cd "$1" 14 | git pull 15 | # update the production website 16 | rsync -av --exclude '.git' . "$DSTD" 17 | if [ ! -d "$DSTD/tmp" ]; then 18 | mkdir "$DSTD/tmp" 19 | fi 20 | else 21 | echo "not a valid destination $2" 22 | fi 23 | else 24 | echo "not a valid source $1" 25 | fi 26 | -------------------------------------------------------------------------------- /bin/remoteOSX: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # settings 4 | SERVER='faust@macfaust.grame.fr' 5 | 6 | # parameters SCRIPT=$1 FILE=$2 OPT=remaining 7 | SCRIPT=$1 8 | FILE=$2 9 | shift 10 | shift 11 | OPT=$* 12 | 13 | #echo script=$SCRIPT file=$FILE options=$OPT 14 | 15 | # produce binary.zip on remote server 16 | TMP=`ssh $SERVER "mktemp -d fwtemp.XXXXXX"` 17 | CMD="source /etc/profile; cd $TMP; $SCRIPT $OPT $FILE" 18 | #echo command="$CMD" 19 | 20 | scp "$FILE" "$SERVER:$TMP/" 21 | ssh "$SERVER" "$CMD" 22 | ssh "$SERVER" "rm $TMP/$FILE" 23 | ssh "$SERVER" "cd $TMP; zip -r binary.zip *" 24 | scp "$SERVER:$TMP/binary.zip" . 25 | ssh "$SERVER" "rm -rf $TMP" 26 | 27 | -------------------------------------------------------------------------------- /bin/runInFaustEnv: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | CMD=$* 3 | 4 | export PATH="/opt/android/ndk:/opt/android/sdk/platform-tools:/opt/android/sdk/tools:/opt/local/libexec/qt5/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" 5 | 6 | export ANDROID_ROOT=/opt/android 7 | export ANDROID_SDK_ROOT=/opt/android/sdk 8 | export ANDROID_NDK_ROOT=/opt/android/ndk 9 | export ANDROID_HOME=/opt/android/sdk 10 | export ANDROID_NDK_HOME=/opt/android/ndk 11 | 12 | $CMD 13 | -------------------------------------------------------------------------------- /catalog/Effects/capture/bandfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/bandfilter.png -------------------------------------------------------------------------------- /catalog/Effects/capture/bandfilter_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/bandfilter_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/compressor_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/compressor_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/crybaby_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/crybaby_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/cubic_distortion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/cubic_distortion.png -------------------------------------------------------------------------------- /catalog/Effects/capture/cubic_distortion_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/cubic_distortion_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/echo.png -------------------------------------------------------------------------------- /catalog/Effects/capture/echo_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/echo_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/fbComb_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/fbComb_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/ffComb_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/ffComb_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/flanger_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/flanger_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/freeverb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/freeverb.png -------------------------------------------------------------------------------- /catalog/Effects/capture/freeverb_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/freeverb_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/gate_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/gate_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/gate_compressor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/gate_compressor.png -------------------------------------------------------------------------------- /catalog/Effects/capture/gate_compressor_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/gate_compressor_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/graphic_eq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/graphic_eq.png -------------------------------------------------------------------------------- /catalog/Effects/capture/graphic_eq_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/graphic_eq_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/lfboost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/lfboost.png -------------------------------------------------------------------------------- /catalog/Effects/capture/lfboost_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/lfboost_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/lowboost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/lowboost.png -------------------------------------------------------------------------------- /catalog/Effects/capture/lowboost_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/lowboost_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/lowcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/lowcut.png -------------------------------------------------------------------------------- /catalog/Effects/capture/lowcut_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/lowcut_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/moogVCF_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/moogVCF_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/mth_octave_filterbank_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/mth_octave_filterbank_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/multibandfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/multibandfilter.png -------------------------------------------------------------------------------- /catalog/Effects/capture/multibandfilter_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/multibandfilter_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/notchw_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/notchw_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/onePole_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/onePole_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/oneZero_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/oneZero_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/phaser_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/phaser_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/phaser_flanger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/phaser_flanger.png -------------------------------------------------------------------------------- /catalog/Effects/capture/phaser_flanger_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/phaser_flanger_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/pitch_shifter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/pitch_shifter.png -------------------------------------------------------------------------------- /catalog/Effects/capture/pitch_shifter_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/pitch_shifter_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/reverb_designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/reverb_designer.png -------------------------------------------------------------------------------- /catalog/Effects/capture/reverb_designer_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/reverb_designer_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/smoothdelay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/smoothdelay.png -------------------------------------------------------------------------------- /catalog/Effects/capture/smoothdelay_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/smoothdelay_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/spectral_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/spectral_level.png -------------------------------------------------------------------------------- /catalog/Effects/capture/spectral_level_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/spectral_level_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/stereoecho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/stereoecho.png -------------------------------------------------------------------------------- /catalog/Effects/capture/stereoecho_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/stereoecho_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/switcher.png -------------------------------------------------------------------------------- /catalog/Effects/capture/switcher_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/switcher_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/tapiir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/tapiir.png -------------------------------------------------------------------------------- /catalog/Effects/capture/tapiir_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/tapiir_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/vcf_wah_pedals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/vcf_wah_pedals.png -------------------------------------------------------------------------------- /catalog/Effects/capture/vcf_wah_pedals_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/vcf_wah_pedals_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/wah4_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/wah4_compr.png -------------------------------------------------------------------------------- /catalog/Effects/capture/zita_rev1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/zita_rev1.png -------------------------------------------------------------------------------- /catalog/Effects/capture/zita_rev1_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Effects/capture/zita_rev1_compr.png -------------------------------------------------------------------------------- /catalog/Effects/description/bandfilter.txt: -------------------------------------------------------------------------------- 1 | The process bandfilter is a classical second order filter. It is used to change the volume of a band of frequencies of the input signal located around a center frequency. The program allows to choose the width of the band (Q factor), the modification of the volume (Gain) , and the center frequency (freq). The higher Q factor is, the thinner the band is. -------------------------------------------------------------------------------- /catalog/Effects/description/compressor.txt: -------------------------------------------------------------------------------- 1 | Stereo Dynamic Range Compressor
2 | http://en.wikipedia.org/wiki/Dynamic_range_compression 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/crybaby.txt: -------------------------------------------------------------------------------- 1 | Digitized CryBaby wah pedal
2 | https://ccrma.stanford.edu/~jos/pasp/vegf.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/cubic_distortion.txt: -------------------------------------------------------------------------------- 1 | Reference : https://ccrma.stanford.edu/~jos/pasp/Cubic_Soft_Clipper.html 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/echo.txt: -------------------------------------------------------------------------------- 1 | This function adds echo to the input signal. You can choose the duration of the echo, from 0 to 1s by steps of 1ms, and the feedback percentage, from 0% to 100%. -------------------------------------------------------------------------------- /catalog/Effects/description/fbComb.txt: -------------------------------------------------------------------------------- 1 | Feed-Back Comb Filter
2 | https://ccrma.stanford.edu/~jos/pasp/Feedback_Comb_Filters.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/ffComb.txt: -------------------------------------------------------------------------------- 1 | Feed Forward Comb Filter
2 | https://ccrma.stanford.edu/~jos/pasp/Feedforward_Comb_Filters.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/flanger.txt: -------------------------------------------------------------------------------- 1 | Flanging Effect
2 | https://ccrma.stanford.edu/~jos/pasp/Flanging.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/freeverb.txt: -------------------------------------------------------------------------------- 1 | The freeverb function allows to simulate the sound reverberated by a room of a certain size, and to mix it with the original sound. It is based on a 8 parallel comb filters, plugged in a series of 4 allpass filters. 2 | 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/gate.txt: -------------------------------------------------------------------------------- 1 | Stereo Signal Gate
2 | http://en.wikipedia.org/wiki/Noise_gate 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/gate_compressor.txt: -------------------------------------------------------------------------------- 1 | Reference: http://en.wikipedia.org/wiki/Dynamic_range_compression 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/graphic_eq.txt: -------------------------------------------------------------------------------- 1 | Graphic Equalizer: Each filter-bank output signal routes through a fader. 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/lfboost.txt: -------------------------------------------------------------------------------- 1 | Second order shelving filter. 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/lowboost.txt: -------------------------------------------------------------------------------- 1 | The process lowboost amplifies the frequencies of its input signal that are situated under a threshold frequency. In this function, the threshold frequency (or cut frequency) can be chosen in the whole audible range (from 20Hz to 20kHz). -------------------------------------------------------------------------------- /catalog/Effects/description/lowcut.txt: -------------------------------------------------------------------------------- 1 | The process lowcut lower the volume of the frequencies of its input signal that are situated under a threshold frequency. In this function, the threshold frequency (or cut frequency) can be chosen in the whole audible range (from 20Hz to 20kHz). -------------------------------------------------------------------------------- /catalog/Effects/description/moogVCF.txt: -------------------------------------------------------------------------------- 1 | Moog "Voltage Controlled Filter" (VCF) in "analog" form
2 | Moog VCF implemented using the same logical block diagram as the classic analog circuit. As such, it neglects the one-sample delay associated with the feedback path around the four one-poles. This extra delay alters the response, especially at high frequencies
3 | https://ccrma.stanford.edu/~stilti/papers/moogvcf.pdf 4 | -------------------------------------------------------------------------------- /catalog/Effects/description/mth_octave_filterbank.txt: -------------------------------------------------------------------------------- 1 | Graphic Equalizer: Each filter-bank output signal routes through a fader
2 | http://asa.aip.org/publications.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/multibandfilter.txt: -------------------------------------------------------------------------------- 1 | The multibandfilter function is an evolution of bandfilter. It is in fact a series of filters with different center frequencies. That way, you can modify the signal range of frequencies by range of frequencies. Multibandfilter could also have been called equalizer. -------------------------------------------------------------------------------- /catalog/Effects/description/notchw.txt: -------------------------------------------------------------------------------- 1 | Notch Width Filter
2 | https://ccrma.stanford.edu/~jos/pasp/Phasing_2nd_Order_Allpass_Filters.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/onePole.txt: -------------------------------------------------------------------------------- 1 | One Pole Filter
2 | Doc: https://ccrma.stanford.edu/~jos/filters/One_Pole.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/oneZero.txt: -------------------------------------------------------------------------------- 1 | A simple one zero filter.
2 | Doc:
https://ccrma.stanford.edu/~jos/filters/One_Zero.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/phaser.txt: -------------------------------------------------------------------------------- 1 | Phasing Effect
2 | https://ccrma.stanford.edu/~jos/pasp/Phasing.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/phaser_flanger.txt: -------------------------------------------------------------------------------- 1 | References:
2 | https://ccrma.stanford.edu/~jos/pasp/Flanging.html
3 | https://ccrma.stanford.edu/~jos/pasp/Phasing.html
4 | 5 | -------------------------------------------------------------------------------- /catalog/Effects/description/pitch_shifter.txt: -------------------------------------------------------------------------------- 1 | This function allows you to change the pitch of a signal. The pitch variation is expressed in semitones. pitch-shifter fragments the signal into small chunks stocked in buffers, and then reads those chunks faster or slower respectively to obtain higher or lower pitch. Besides, two buffers reading decayed chunks are crossfaded to smooth the signal. -------------------------------------------------------------------------------- /catalog/Effects/description/reverb_designer.txt: -------------------------------------------------------------------------------- 1 | A Feedback Delay Network (FDN). 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/smoothdelay.txt: -------------------------------------------------------------------------------- 1 | A stereo smooth delay with a feedback control. This example shows how to use sdelay, a delay that doesn't click and doesn't transpose when the delay time is changed. 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/spectral_level.txt: -------------------------------------------------------------------------------- 1 | An half-octave spectrum analyzer. 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/stereoecho.txt: -------------------------------------------------------------------------------- 1 | A 1 second Stereo Echo. 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/switcher.txt: -------------------------------------------------------------------------------- 1 | Switch between two stereo sources. Useful to compare these two sources. 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/tapiir.txt: -------------------------------------------------------------------------------- 1 | The tapiir program is a multitap delay program. It has a stereo input and a stereo output. Each channel of the stereo signal is sent to 6 independant delays, not necessarily with the same gain for each delay. Then, each delay output is sent to the 5 other delay input, and also to its own input (to provide feedback possibilities), and all volumes can be changed independantly. Finally, each delay output, and each input of the tapiir is connected to both channels of the stereo output of the tapiir, still with configurable volumes. A wide range of effect can be constructed out of this complex system of delays (feedback, echos, filters). 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/vcf_wah_pedals.txt: -------------------------------------------------------------------------------- 1 | VCF and wah pedal effect. 2 | -------------------------------------------------------------------------------- /catalog/Effects/description/wah4.txt: -------------------------------------------------------------------------------- 1 | Wah effect, 4th order
2 | https://ccrma.stanford.edu/~jos/pasp/vegf.html 3 | -------------------------------------------------------------------------------- /catalog/Effects/description/zita_rev1.txt: -------------------------------------------------------------------------------- 1 | Reference: https://ccrma.stanford.edu/~jos/pasp/Zita_Rev1.html 2 | -------------------------------------------------------------------------------- /catalog/Effects/src/compressor.dsp: -------------------------------------------------------------------------------- 1 | declare name "Stereo Dynamic Range Compressor"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "http://en.wikipedia.org/wiki/Dynamic_range_compression"; 6 | 7 | import("effect.lib"); 8 | 9 | process = compressor_demo; -------------------------------------------------------------------------------- /catalog/Effects/src/crybaby.dsp: -------------------------------------------------------------------------------- 1 | declare name "Wah4"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "https://ccrma.stanford.edu/~jos/pasp/vegf.html"; 6 | 7 | import("effect.lib"); 8 | 9 | process = crybaby_demo; -------------------------------------------------------------------------------- /catalog/Effects/src/cubic_distortion.dsp: -------------------------------------------------------------------------------- 1 | ol = library("oscillator.lib"); 2 | fl = library("filter.lib"); 3 | el = library("effect.lib"); 4 | process = 5 | // ol.oscr_demo : el.cubicnl_demo : fl.spectral_level_demo <: _,_; 6 | vgroup("[1]",ol.oscr_demo) : 7 | vgroup("[2]",el.cubicnl_demo) : 8 | vgroup("[3]",fl.spectral_level_demo) <: _,_; 9 | -------------------------------------------------------------------------------- /catalog/Effects/src/echo.dsp: -------------------------------------------------------------------------------- 1 | declare name "echo"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | //----------------------------------------------- 7 | // A Simple Echo 8 | //----------------------------------------------- 9 | 10 | import("music.lib"); 11 | 12 | process = vgroup("echo-simple", echo1s); 13 | -------------------------------------------------------------------------------- /catalog/Effects/src/fbComb.dsp: -------------------------------------------------------------------------------- 1 | declare name "Feed-Back Comb Filter"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare version "1.29"; 5 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 6 | declare reference "https://ccrma.stanford.edu/~jos/pasp/Feedback_Comb_Filters.html"; 7 | 8 | import("filter.lib"); 9 | 10 | maxdel = 4096; 11 | N = vslider("del[tooltip:current (float) comb-filter delay between 0 and maxdel]",1,0,4096,1); 12 | b0 = vslider("b0[tooltip:gain applied to delay-line input and forwarded to output]",1,0,1,0.01); 13 | aN = vslider("bM[tooltip:minus the gain applied to delay-line output before summing with the input and feeding to the delay line]",0,0,1,0.01); 14 | 15 | process = hgroup("feedBackCombFilter",fb_comb(maxdel,N,b0,aN)); -------------------------------------------------------------------------------- /catalog/Effects/src/ffComb.dsp: -------------------------------------------------------------------------------- 1 | declare name "Feed-Forward Comb Filter"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare version "1.29"; 5 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 6 | declare reference "https://ccrma.stanford.edu/~jos/pasp/Feedforward_Comb_Filters.html"; 7 | 8 | import("filter.lib"); 9 | 10 | maxdel = 4096; 11 | M = vslider("M",1,0,4096,1); 12 | b0 = vslider("b0[tooltip:gain applied to delay-line input]",1,0,1,0.01); 13 | bM = vslider("bM[tooltip:gain applied to delay-line output and then summed with input]",0,0,1,0.01); 14 | 15 | process = hgroup("feedForwardCombFilter",ff_comb(maxdel,M,b0,bM)); -------------------------------------------------------------------------------- /catalog/Effects/src/flanger.dsp: -------------------------------------------------------------------------------- 1 | declare name "Flanging effect"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "https://ccrma.stanford.edu/~jos/pasp/Flanging.html"; 6 | 7 | import("effect.lib"); 8 | 9 | process = flanger_demo; -------------------------------------------------------------------------------- /catalog/Effects/src/gate.dsp: -------------------------------------------------------------------------------- 1 | declare name "Stereo signal gates"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "http://en.wikipedia.org/wiki/Noise_gate"; 6 | 7 | import("effect.lib"); 8 | 9 | process = gate_demo; -------------------------------------------------------------------------------- /catalog/Effects/src/gate_compressor.dsp: -------------------------------------------------------------------------------- 1 | ol = library("oscillator.lib"); 2 | el = library("effect.lib"); 3 | fl = library("filter.lib"); 4 | 5 | process = 6 | // ol.sawtooth_demo <: 7 | // el.gate_demo : el.compressor_demo :> fl.spectral_level_demo <: _,_; 8 | vgroup("[1]", ol.sawtooth_demo) <: 9 | vgroup("[2]", el.gate_demo) : 10 | vgroup("[3]", el.compressor_demo) :> 11 | vgroup("[4]", fl.spectral_level_demo) <: 12 | _,_; 13 | -------------------------------------------------------------------------------- /catalog/Effects/src/graphic_eq.dsp: -------------------------------------------------------------------------------- 1 | ol = library("oscillator.lib"); 2 | fl = library("filter.lib"); 3 | 4 | process = 5 | // ol.sawtooth_demo : fl.filterbank_demo : fl.spectral_level_demo <: _,_; 6 | vgroup("[1]",ol.sawtooth_demo) : 7 | vgroup("[2]",fl.filterbank_demo) : 8 | vgroup("[3]",fl.spectral_level_demo) <: 9 | _,_; 10 | -------------------------------------------------------------------------------- /catalog/Effects/src/moogVCF.dsp: -------------------------------------------------------------------------------- 1 | declare name "Moog VCF"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "https://ccrma.stanford.edu/~stilti/papers/moogvcf.pdf"; 6 | 7 | import("effect.lib"); 8 | 9 | process = moog_vcf_demo; -------------------------------------------------------------------------------- /catalog/Effects/src/mth_octave_filterbank.dsp: -------------------------------------------------------------------------------- 1 | declare name "Graphic Equalizer"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "http://asa.aip.org/publications.html"; 6 | 7 | import("filter.lib"); 8 | 9 | M = 2; //number of bands per octave 10 | process = mth_octave_filterbank_demo(M); -------------------------------------------------------------------------------- /catalog/Effects/src/multibandfilter.dsp: -------------------------------------------------------------------------------- 1 | declare name "multibandfilter"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | 7 | //---------------------------Multi Band Filter----------------------------- 8 | // 9 | //------------------------------------------------------------------------- 10 | 11 | process = hgroup("Multi Band Filter", 12 | seq( i, 10, vgroup("peak %i", component("bandfilter.dsp").bandfilter(1000*(1+i))) ) 13 | ); 14 | -------------------------------------------------------------------------------- /catalog/Effects/src/notchw.dsp: -------------------------------------------------------------------------------- 1 | declare name "Notch Width"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare version "1.29"; 5 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 6 | declare reference "https://ccrma.stanford.edu/~jos/pasp/Phasing_2nd_Order_Allpass_Filters.html"; 7 | 8 | import("filter.lib"); 9 | 10 | width = vslider("notchWidth",50,0,1000,1); 11 | freq = vslider("notchFreq",440,30,10000,1); 12 | 13 | process = hgroup("notchWidth",notchw(width,freq)); -------------------------------------------------------------------------------- /catalog/Effects/src/onePole.dsp: -------------------------------------------------------------------------------- 1 | declare name "One Pole Filter"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare version "1.29"; 5 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 6 | declare reference "https://ccrma.stanford.edu/~jos/filters/One_Pole.html"; 7 | 8 | import("filter.lib"); 9 | 10 | p = vslider("poleLocation",0,-1,1,0.01); 11 | 12 | process = vgroup("onePole",pole(p)); -------------------------------------------------------------------------------- /catalog/Effects/src/oneZero.dsp: -------------------------------------------------------------------------------- 1 | declare name "One Zero Filter"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare version "1.29"; 5 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 6 | declare reference "https://ccrma.stanford.edu/~jos/filters/One_Zero.html"; 7 | 8 | import("filter.lib"); 9 | 10 | z = vslider("zeroPosition",0,0,1,0.01); 11 | 12 | process = vgroup("oneZero",zero(z)); -------------------------------------------------------------------------------- /catalog/Effects/src/phaser.dsp: -------------------------------------------------------------------------------- 1 | declare name "Phasing effect"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "https://ccrma.stanford.edu/~jos/pasp/Phasing.html"; 6 | 7 | import("effect.lib"); 8 | 9 | process = phaser2_demo; -------------------------------------------------------------------------------- /catalog/Effects/src/phaser_flanger.dsp: -------------------------------------------------------------------------------- 1 | ol = library("oscillator.lib"); 2 | fl = library("filter.lib"); 3 | el = library("effect.lib"); 4 | 5 | //process = ol.sawtooth_demo <: 6 | // el.flanger_demo : el.phaser2_demo :> fl.spectral_level_demo <: _,_; 7 | 8 | fx_stack = 9 | vgroup("[1]", ol.sawtooth_demo) <: 10 | vgroup("[2]", el.flanger_demo) : 11 | vgroup("[3]", el.phaser2_demo); 12 | 13 | level_viewer(x,y) = attach(x,vgroup("[4]", fl.spectral_level_demo(x+y))),y; 14 | 15 | process = fx_stack : level_viewer; 16 | -------------------------------------------------------------------------------- /catalog/Effects/src/reverb_designer.dsp: -------------------------------------------------------------------------------- 1 | import("effect.lib"); 2 | 3 | N = 16; // Feedback Delay Network (FDN) order (power of 2, 2 to 16) 4 | NB = 5; // Number of T60-controlled frequency-bands (3 or more) 5 | BSO = 3; // Order of each lowpass/highpass bandsplit (odd positive integer) 6 | 7 | process = fdnrev0_demo(N,NB,BSO); 8 | -------------------------------------------------------------------------------- /catalog/Effects/src/smoothdelay.dsp: -------------------------------------------------------------------------------- 1 | declare name "SmoothDelay"; 2 | declare author "Yann Orlarey"; 3 | declare copyright "Grame"; 4 | declare version "1.0"; 5 | declare license "STK-4.3"; 6 | 7 | 8 | //--------------------------process---------------------------- 9 | // 10 | // A stereo smooth delay with a feedback control 11 | // 12 | // This example shows how to use sdelay, a delay that doesn't 13 | // click and doesn't transpose when the delay time is changed 14 | //------------------------------------------------------------- 15 | 16 | import("music.lib"); 17 | 18 | process = par(i, 2, voice) 19 | with 20 | { 21 | voice = (+ : sdelay(N, interp, dtime)) ~ *(fback); 22 | N = int(2^19); 23 | interp = hslider("interpolation[unit:ms][style:knob]",10,1,100,0.1)*SR/1000.0; 24 | dtime = hslider("delay[unit:ms][style:knob]", 0, 0, 5000, 0.1)*SR/1000.0; 25 | fback = hslider("feedback[style:knob]",0,0,100,0.1)/100.0; 26 | }; 27 | 28 | 29 | -------------------------------------------------------------------------------- /catalog/Effects/src/spectral_level.dsp: -------------------------------------------------------------------------------- 1 | // Spectrum analyzer 2 | 3 | fl = library("filter.lib"); 4 | 5 | BandsPerOctave = 3; // third-octave filter bank 6 | process = fl.mth_octave_spectral_level_demo(BandsPerOctave) <: _,_; 7 | -------------------------------------------------------------------------------- /catalog/Effects/src/stereoecho.dsp: -------------------------------------------------------------------------------- 1 | declare name "stereoecho"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c)GRAME 2007"; 6 | 7 | //----------------------------------------------- 8 | // A 1 second Stereo Echo 9 | //----------------------------------------------- 10 | 11 | import("music.lib"); 12 | 13 | process = vgroup("stereo echo", (echo1s, echo1s)); 14 | -------------------------------------------------------------------------------- /catalog/Effects/src/switcher.dsp: -------------------------------------------------------------------------------- 1 | declare name "switch"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c)GRAME 2007"; 6 | 7 | //----------------------------------------------- 8 | // Switch between two stereo sources. 9 | // Useful to compare these two sources 10 | // The parameter c\in{0,1} indicates the 11 | // channels to select 12 | //----------------------------------------------- 13 | 14 | switch(c,x0,x1,y0,y1) = sel(c,x0,y0), sel(c,x1,y1) 15 | with { 16 | sel(c,x,y) = (1-c)*x + c*y; 17 | }; 18 | 19 | process = switch(hslider("source 0 <-> source 1",0,0,1,1)); 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /catalog/Effects/src/vcf_wah_pedals.dsp: -------------------------------------------------------------------------------- 1 | ol = library("oscillator.lib"); 2 | fl = library("filter.lib"); 3 | el = library("effect.lib"); 4 | 5 | // process = ol.sawtooth_demo : 6 | // el.crybaby_demo : el.moog_vcf_demo : el.wah4_demo : 7 | // fl.spectral_level_demo <: _,_; 8 | process = 9 | vgroup("[1]", ol.sawtooth_demo) : 10 | vgroup("[2]", el.crybaby_demo) : 11 | vgroup("[3]", el.wah4_demo) : 12 | vgroup("[4]", el.moog_vcf_demo) : 13 | vgroup("[5]", fl.spectral_level_demo) <: 14 | _,_; 15 | -------------------------------------------------------------------------------- /catalog/Effects/src/wah4.dsp: -------------------------------------------------------------------------------- 1 | declare name "Wah4"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "https://ccrma.stanford.edu/~jos/pasp/vegf.html"; 6 | 7 | import("effect.lib"); 8 | 9 | process = wah4_demo; -------------------------------------------------------------------------------- /catalog/Effects/src/zita_rev1.dsp: -------------------------------------------------------------------------------- 1 | process = component("effect.lib").zita_rev1; 2 | // For test inputs, see ./reverb_tester.dsp 3 | -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/NLFeks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/NLFeks.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/NLFeks_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/NLFeks_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/NLFfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/NLFfm.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/NLFfm_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/NLFfm_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/blowBottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/blowBottle.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/blowBottle_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/blowBottle_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/blowHole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/blowHole.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/blowHole_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/blowHole_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/bowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/bowed.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/bowed_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/bowed_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/brass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/brass.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/brass_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/brass_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/clarinet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/clarinet.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/clarinet_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/clarinet_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/flute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/flute.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/flute_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/flute_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/flutestk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/flutestk.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/flutestk_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/flutestk_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/glassHarmonica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/glassHarmonica.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/glassHarmonica_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/glassHarmonica_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/saxophony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/saxophony.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/saxophony_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/saxophony_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/sitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/sitar.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/sitar_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/sitar_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/tibetanBowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/tibetanBowl.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/tibetanBowl_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/tibetanBowl_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/tunedBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/tunedBar.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/tunedBar_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/tunedBar_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/uniBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/uniBar.png -------------------------------------------------------------------------------- /catalog/Faust-STK/capture/uniBar_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Faust-STK/capture/uniBar_compr.png -------------------------------------------------------------------------------- /catalog/Faust-STK/description/NLFeks.txt: -------------------------------------------------------------------------------- 1 | A nonlinear version of the extended Karplus-Strong. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/NLFfm.txt: -------------------------------------------------------------------------------- 1 | FM synthesizer implemented with a nonlinear passive allpass filter. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/blowBottle.txt: -------------------------------------------------------------------------------- 1 | This object implements a helmholtz resonator (biquad filter) with a polynomial jet excitation (a la Cook). 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/blowHole.txt: -------------------------------------------------------------------------------- 1 | A clarinet model, with the addition of a two-port register hole and a three-port dynamic tonehole implementation, as discussed by Scavone and Cook (1998). In this implementation, the distances between the reed/register hole and tonehole/bell are fixed. As a result, both the tonehole and register hole will have variable influence on the playing frequency, which is dependent on the length of the air column. In addition, the highest playing freqeuency is limited by these fixed lengths. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/bowed.txt: -------------------------------------------------------------------------------- 1 | A bowed string model, a la Smith (1986), after McIntyre, Schumacher, Woodhouse (1983). 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/brass.txt: -------------------------------------------------------------------------------- 1 | A simple brass instrument waveguide model, a la Cook (TBone, HosePlayer). 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/clarinet.txt: -------------------------------------------------------------------------------- 1 | A simple clarinet physical model, as discussed by Smith (1986), McIntyre, Schumacher, Woodhouse (1983), and others. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/flute.txt: -------------------------------------------------------------------------------- 1 | A simple flute based on Smith's algorythm. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/flutestk.txt: -------------------------------------------------------------------------------- 1 | A simple flute physical model, as discussed by Karjalainen, Smith, Waryznyk, etc. The jet model uses a polynomial, a la Cook. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/glassHarmonica.txt: -------------------------------------------------------------------------------- 1 | This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Banded Waveguides: Towards Physical Modelling of Bar Percussion Instruments, Proceedings of the 1999 International Computer Music Conference. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/saxophony.txt: -------------------------------------------------------------------------------- 1 | This class implements a hybrid digital waveguide instrument that can generate a variety of wind-like sounds. It has also been referred to as the blowed string model. The waveguide section is essentially that of a string, with one rigid and one lossy termination. The non-linear function is a reed table. The string can be blown at any point between the terminations, though just as with strings, it is impossible to excite the system at either end. If the excitation is placed at the string mid-point, the sound is that of a clarinet. At points closer to the bridge, the sound is closer to that of a saxophone. See Scavone (2002) for more details. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/sitar.txt: -------------------------------------------------------------------------------- 1 | This instrument implements a sitar plucked string physical model based on the Karplus-Strong algorithm using a randomly modulated delay line. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/tibetanBowl.txt: -------------------------------------------------------------------------------- 1 | This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Banded Waveguides: Towards Physical Modelling of Bar Percussion Instruments, Proceedings of the 1999 International Computer Music Conference. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/tunedBar.txt: -------------------------------------------------------------------------------- 1 | This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Banded Waveguides: Towards Physical Modelling of Bar Percussion Instruments, Proceedings of the 1999 International Computer Music Conference. 2 | -------------------------------------------------------------------------------- /catalog/Faust-STK/description/uniBar.txt: -------------------------------------------------------------------------------- 1 | This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Banded Waveguides: Towards Physical Modelling of Bar Percussion Instruments, Proceedings of the 1999 International Computer Music Conference. 2 | -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/karplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/karplus.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/karplus32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/karplus32.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/karplus32_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/karplus32_compr.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/karplus_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/karplus_compr.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/noise.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/noise_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/noise_compr.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/osc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/osc.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/osc_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/osc_compr.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/osci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/osci.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/osci_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/osci_compr.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/oscrs_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/oscrs_compr.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/pink_noise_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/pink_noise_compr.png -------------------------------------------------------------------------------- /catalog/Synthesizers/capture/sawtooth_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Synthesizers/capture/sawtooth_compr.png -------------------------------------------------------------------------------- /catalog/Synthesizers/description/karplus.txt: -------------------------------------------------------------------------------- 1 | karplus imitates the sound produced by a string excitation. The excitation is then passed through a resonator which parameters (reverberation time, and efficency) can be chosen to modify the final sound. 2 | 3 | -------------------------------------------------------------------------------- /catalog/Synthesizers/description/karplus32.txt: -------------------------------------------------------------------------------- 1 | karplus32 is an enriched version of karplus (so to understand the working of karplus32, please start by reading the explanations for karplus), with 32 resonators in parallel, instead of one resonator only. This resonator network has a detuning function that allows to attribute to each resonator a different reverberation time. 2 | 3 | 4 | -------------------------------------------------------------------------------- /catalog/Synthesizers/description/noise.txt: -------------------------------------------------------------------------------- 1 | The noise generator is very usefull; it gives random values to each sample of its output signal so that this signal ideally has a flat frequency spectrum, and can be used fot instance to test filters. -------------------------------------------------------------------------------- /catalog/Synthesizers/description/osc.txt: -------------------------------------------------------------------------------- 1 | The osc function generates a sinusoidal signal at the frequency indicated by the slider. Frequencies from 0Hz up to 24000Hz can be generated. You can also choose the volume of the signal. This oscillator approximates the value of each sample to its integer value. For a more precise oscillator (with linear interpolation), see the osci function. -------------------------------------------------------------------------------- /catalog/Synthesizers/description/osci.txt: -------------------------------------------------------------------------------- 1 | The function osci generates a sinusoidal signal at the frequency indicated by the slider. Frequencies from 0Hz up to 24000Hz can be generated. You can also choose the volume of the signal.This oscillator performs approximations of the sin function using linear interpolations, which are more precise than the approximations used in the osc function. -------------------------------------------------------------------------------- /catalog/Synthesizers/description/oscrs.txt: -------------------------------------------------------------------------------- 1 | Sinusoidal oscillator based on 2D vector rotation
2 | https://ccrma.stanford.edu/~jos/pasp/Normalized_Scattering_Junctions.html 3 | -------------------------------------------------------------------------------- /catalog/Synthesizers/description/pink_noise.txt: -------------------------------------------------------------------------------- 1 | Pink noise (1/f noise) generator (third-order approximation)
2 | https://ccrma.stanford.edu/~jos/sasp/Example_Synthesis_1_F_Noise.html 3 | -------------------------------------------------------------------------------- /catalog/Synthesizers/description/sawtooth.txt: -------------------------------------------------------------------------------- 1 | Sawtooth Oscillator 2 | -------------------------------------------------------------------------------- /catalog/Synthesizers/src/noise.dsp: -------------------------------------------------------------------------------- 1 | declare name "noise"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | 7 | // noise generator 8 | 9 | random = +(12345)~*(1103515245); 10 | noise = random/2147483647.0; 11 | 12 | process = noise * vslider("vol", 0, 0, 1, 0.1); 13 | -------------------------------------------------------------------------------- /catalog/Synthesizers/src/osc.dsp: -------------------------------------------------------------------------------- 1 | declare name "osc"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | 7 | //----------------------------------------------- 8 | // Sinusoidal Oscillator 9 | //----------------------------------------------- 10 | 11 | import("music.lib"); 12 | 13 | smooth(c) = *(1-c) : +~*(c); 14 | vol = hslider("volume (db)", 0, -96, 0, 0.1) : db2linear : smooth(0.999) ; 15 | freq = hslider("freq", 1000, 0, 24000, 0.1); 16 | 17 | 18 | process = vgroup("Oscillator", osc(freq) * vol); 19 | 20 | -------------------------------------------------------------------------------- /catalog/Synthesizers/src/osci.dsp: -------------------------------------------------------------------------------- 1 | declare name "osci"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | 7 | //----------------------------------------------- 8 | // Sinusoidal Oscillator 9 | // (with linear interpolation) 10 | //----------------------------------------------- 11 | 12 | import("music.lib"); 13 | 14 | smooth(c) = *(1-c) : +~*(c); 15 | vol = hslider("volume (db)", 0, -96, 0, 0.1) : db2linear : smooth(0.999) ; 16 | freq = hslider("freq", 1000, 0, 24000, 0.1); 17 | 18 | 19 | process = vgroup("Oscillator", osci(freq) * vol); 20 | -------------------------------------------------------------------------------- /catalog/Synthesizers/src/oscrs.dsp: -------------------------------------------------------------------------------- 1 | declare name "Sinusoidal oscillator based on 2D vector rotation"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "https://ccrma.stanford.edu/~jos/pasp/Normalized_Scattering_Junctions.html"; 6 | 7 | import("oscillator.lib"); 8 | 9 | process = oscrs_demo; -------------------------------------------------------------------------------- /catalog/Synthesizers/src/pink_noise.dsp: -------------------------------------------------------------------------------- 1 | declare name "Pink noise (1/f noise) generator (third-order approximation)"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | declare reference "https://ccrma.stanford.edu/~jos/sasp/Example_Synthesis_1_F_Noise.html"; 6 | 7 | import("oscillator.lib"); 8 | 9 | amp = vslider("Amplitude",0.5,0,1,0.01); 10 | process = vgroup("Pink Noise Generator",pink_noise*amp); -------------------------------------------------------------------------------- /catalog/Synthesizers/src/sawtooth.dsp: -------------------------------------------------------------------------------- 1 | declare name "Sawtooth Oscillator"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | 6 | import("oscillator.lib"); 7 | 8 | process = sawtooth_demo; -------------------------------------------------------------------------------- /catalog/Tools/capture/capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/capture.png -------------------------------------------------------------------------------- /catalog/Tools/capture/capture_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/capture_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/dbmeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/dbmeter.png -------------------------------------------------------------------------------- /catalog/Tools/capture/dbmeter_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/dbmeter_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/envelop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/envelop.png -------------------------------------------------------------------------------- /catalog/Tools/capture/envelop_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/envelop_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/matrix.png -------------------------------------------------------------------------------- /catalog/Tools/capture/matrix_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/matrix_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/mixer.png -------------------------------------------------------------------------------- /catalog/Tools/capture/mixer_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/mixer_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/mth_octave_spectral_level_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/mth_octave_spectral_level_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/panpot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/panpot.png -------------------------------------------------------------------------------- /catalog/Tools/capture/panpot_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/panpot_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/spat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/spat.png -------------------------------------------------------------------------------- /catalog/Tools/capture/spat_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/spat_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/tester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/tester.png -------------------------------------------------------------------------------- /catalog/Tools/capture/tester_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/tester_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/volume.png -------------------------------------------------------------------------------- /catalog/Tools/capture/volume_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/volume_compr.png -------------------------------------------------------------------------------- /catalog/Tools/capture/vumeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/vumeter.png -------------------------------------------------------------------------------- /catalog/Tools/capture/vumeter_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/Tools/capture/vumeter_compr.png -------------------------------------------------------------------------------- /catalog/Tools/description/capture.txt: -------------------------------------------------------------------------------- 1 | The capture function allows you to record up to 8s of mono signal. It then loops it until you record another sequence, or leave the program. You can also choose the volume of the playback moving the horizontal slider. -------------------------------------------------------------------------------- /catalog/Tools/description/dbmeter.txt: -------------------------------------------------------------------------------- 1 | The dbmeter is a tool that shows in a bar graph the level of the signal it is analysing. The level expressed in dB, can move from -96 up to +10. -------------------------------------------------------------------------------- /catalog/Tools/description/envelop.txt: -------------------------------------------------------------------------------- 1 | This function generates a white noise formed by an envelop. The noise is sustained as long as you push the "play" button. Several parameters are used to shape the envelop; the attack length, the decay duration, the sustain volume percentage, and the release duration. 2 | -------------------------------------------------------------------------------- /catalog/Tools/description/matrix.txt: -------------------------------------------------------------------------------- 1 | This program is an 8*8 audio matrix. Each output is a mixer in which you can set individually the volume of the 8 inputs. Then you can use separately the 8 outputs. -------------------------------------------------------------------------------- /catalog/Tools/description/mixer.txt: -------------------------------------------------------------------------------- 1 | This function allows the user to mix an 8 channel signals into a stereo (2 outputs) signal. Each input is provided with a VUmeter which shows its level, a pan button which shares out the signal between the two output channels, and a checkbox which allows to mute it. -------------------------------------------------------------------------------- /catalog/Tools/description/mth_octave_spectral_level.txt: -------------------------------------------------------------------------------- 1 | Spectral Level: Display (in bar graphs) the average signal level in each spectral band. 2 | -------------------------------------------------------------------------------- /catalog/Tools/description/panpot.txt: -------------------------------------------------------------------------------- 1 | This function is the same than the balance button on an stereo audio system. It shares out the signal volume between the two channels. Negative values give a louder volume in output 0, than in output 1 and the opposit occurs with positive values. 2 | -------------------------------------------------------------------------------- /catalog/Tools/description/spat.txt: -------------------------------------------------------------------------------- 1 | This program is an 8 voices spatializer. It is made to be used with a set of 8 loudspeaker, in order to calculate the output volume of each loudspeaker that will give to the listener the feeling that the source is located at a certain distance, and emitting with a certain angle. Those distances and angles can be selected with sliders. -------------------------------------------------------------------------------- /catalog/Tools/description/tester.txt: -------------------------------------------------------------------------------- 1 | The tester function allows you to send 3 different kinds of signal (white noise, pink noise or a sine wave with a chosen frequency) to 8 different chanels, at the volume you desire. As its names suggests it, you can for instance useit to test or configure a set of 8 loudspeakers. -------------------------------------------------------------------------------- /catalog/Tools/description/volume.txt: -------------------------------------------------------------------------------- 1 | This function simply changes the volume of its input signal, and makes it its output signal. 2 | -------------------------------------------------------------------------------- /catalog/Tools/description/vumeter.txt: -------------------------------------------------------------------------------- 1 | This function, as implied by its name, is a VUmeter. It shows the volume of its input signal. The output signal is strictly the same as the input. -------------------------------------------------------------------------------- /catalog/Tools/src/capture.dsp: -------------------------------------------------------------------------------- 1 | declare name "capture"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | 7 | //------------------------------------------------- 8 | // Capture : record up to 8s of sound and 9 | // playback the recorded sound in loop 10 | //------------------------------------------------- 11 | 12 | import("music.lib"); 13 | 14 | B = button("Capture"); // Capture sound while pressed 15 | I = int(B); // convert button signal from float to integer 16 | R = (I-I') <= 0; // Reset capture when button is pressed 17 | D = (+(I):*(R))~_; // Compute capture duration while button is pressed: 0..NNNN0..MMM 18 | 19 | 20 | capture = *(B) : (+ : delay(8*65536, D-1)) ~ *(1.0-B) ; 21 | 22 | 23 | smooth(c) = *(1-c) : +~*(c); 24 | level = hslider("level (db)", 0, -96, 4, 0.1) : db2linear : smooth(0.999); 25 | 26 | process = vgroup( "Audio Capture", capture : *(level) ) ; 27 | 28 | -------------------------------------------------------------------------------- /catalog/Tools/src/dbmeter.dsp: -------------------------------------------------------------------------------- 1 | declare name "dbmeter"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | 7 | //------------------------------------------------- 8 | // A dB Vumeter 9 | //------------------------------------------------- 10 | 11 | import("math.lib"); 12 | import("music.lib"); 13 | 14 | 15 | vmeter(x) = attach(x, envelop(x) : vbargraph("dB", -96, 10)); 16 | hmeter(x) = attach(x, envelop(x) : hbargraph("dB", -96, 10)); 17 | 18 | envelop = abs : max(db2linear(-96)) : linear2db : min(10) : max ~ -(96.0/SR); 19 | 20 | process = vmeter; 21 | -------------------------------------------------------------------------------- /catalog/Tools/src/matrix.dsp: -------------------------------------------------------------------------------- 1 | declare name "matrix"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | 7 | //----------------------------------------------- 8 | // Audio Matrix : N inputs x M outputs 9 | //----------------------------------------------- 10 | 11 | import("music.lib"); 12 | 13 | Fader(in) = db2linear(vslider("Input %in", -10, -96, 4, 0.1)); 14 | Mixer(N,out) = hgroup("Output %out", par(in, N, *(Fader(in)) ) :> _ ); 15 | Matrix(N,M) = tgroup ("Matrix %N x %M", par(in, N, _) <: par(out, M, Mixer(N, out))); 16 | 17 | process = Matrix(8, 8); 18 | -------------------------------------------------------------------------------- /catalog/Tools/src/mixer.dsp: -------------------------------------------------------------------------------- 1 | declare name "mixer"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | 7 | //------------------------------------------------- 8 | // Simple 8x2 mixer 9 | //------------------------------------------------- 10 | 11 | vol = component("volume.dsp"); 12 | pan = component("panpot.dsp"); 13 | vumeter = component("vumeter.dsp").vmeter; 14 | mute = *(1 - checkbox("mute")); 15 | 16 | voice(v) = vgroup("voice %v", mute : hgroup("[2]", vol : vumeter) : pan); 17 | stereo = hgroup("stereo out", vol, vol); 18 | 19 | process = hgroup("mixer", par(i, 8, voice(i)) :> stereo); 20 | 21 | 22 | -------------------------------------------------------------------------------- /catalog/Tools/src/mth_octave_spectral_level.dsp: -------------------------------------------------------------------------------- 1 | declare name "Spectral Level"; 2 | declare author "Julius O. Smith (jos at ccrma.stanford.edu)"; 3 | declare copyright "Julius O. Smith III"; 4 | declare license "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license) 5 | 6 | 7 | import("filter.lib"); 8 | 9 | M = 1; //number of bands per octave 10 | process = mth_octave_spectral_level_demo(M); -------------------------------------------------------------------------------- /catalog/Tools/src/panpot.dsp: -------------------------------------------------------------------------------- 1 | declare name "panpot"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c)GRAME 2006"; 6 | 7 | //------------------------------------------------- 8 | // Stereo panpot 9 | //------------------------------------------------- 10 | 11 | panpot(x) = sqrt(c)*x, sqrt(1-c)*x 12 | with { 13 | c=(nentry("[1]pan[style:knob]",0,-90,90,1)-90.0)/-180.0; 14 | }; 15 | 16 | process = panpot; 17 | 18 | -------------------------------------------------------------------------------- /catalog/Tools/src/volume.dsp: -------------------------------------------------------------------------------- 1 | declare name "volume"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c)GRAME 2006"; 6 | 7 | //----------------------------------------------- 8 | // Volume control in dB 9 | //----------------------------------------------- 10 | 11 | import("music.lib"); 12 | 13 | smooth(c) = *(1-c) : +~*(c); 14 | gain = vslider("[1]", 0, -70, +4, 0.1) : db2linear : smooth(0.999); 15 | 16 | process = *(gain); 17 | -------------------------------------------------------------------------------- /catalog/Tools/src/vumeter.dsp: -------------------------------------------------------------------------------- 1 | declare name "vumeter"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c)GRAME 2006"; 6 | 7 | //------------------------------------------------- 8 | // Simple vumeter 9 | //------------------------------------------------- 10 | 11 | import("math.lib"); 12 | import("music.lib"); 13 | 14 | 15 | vmeter(x) = attach(x, envelop(x) : vbargraph("[2][unit:dB]", -70, +5)); 16 | hmeter(x) = attach(x, envelop(x) : hbargraph("[2][unit:dB]", -70, +5)); 17 | 18 | envelop = abs : max ~ -(1.0/SR) : max(db2linear(-70)): linear2db; 19 | 20 | //process = vgroup("vu meter", vmeter); 21 | process = vmeter; 22 | 23 | 24 | -------------------------------------------------------------------------------- /catalog/userEffects/capture/AmplitudeModulation_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userEffects/capture/AmplitudeModulation_compr.png -------------------------------------------------------------------------------- /catalog/userEffects/capture/Granulator_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userEffects/capture/Granulator_compr.png -------------------------------------------------------------------------------- /catalog/userEffects/capture/adder_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userEffects/capture/adder_compr.png -------------------------------------------------------------------------------- /catalog/userEffects/description/AmplitudeModulation.txt: -------------------------------------------------------------------------------- 1 | by HarryVanHaaren: 2 | A simple amplitude modulation sketch. 3 |
Voted: 1 -------------------------------------------------------------------------------- /catalog/userEffects/description/Granulator.txt: -------------------------------------------------------------------------------- 1 | by Mayank Sanganeria: 2 | Mayank Sanganeria - Granulator 3 |
Voted: 1 -------------------------------------------------------------------------------- /catalog/userEffects/description/adder.txt: -------------------------------------------------------------------------------- 1 | by Romain Michon: 2 | Add two signals together. 3 |
Voted: 5 -------------------------------------------------------------------------------- /catalog/userEffects/src/AmplitudeModulation.dsp: -------------------------------------------------------------------------------- 1 | declare name "AmplitudeModulation"; 2 | declare version "1.0"; 3 | declare author "Harry van Haaren"; 4 | declare license "LGPLv3+"; 5 | 6 | import ("oscillator.lib"); 7 | 8 | freq = hslider( "Freq", 220, 55, 880, 1 ); 9 | 10 | vol = hslider ( "Vol", 0, 0, 1.0, 0.01); 11 | 12 | ampMod = ( _ , oscrs(freq) ) :> * ; 13 | 14 | process = vol * ampMod; -------------------------------------------------------------------------------- /catalog/userEffects/src/adder.dsp: -------------------------------------------------------------------------------- 1 | process = +; -------------------------------------------------------------------------------- /catalog/userEffects/src/deleted/adderTest.dsp_DEL_10-03-051112: -------------------------------------------------------------------------------- 1 | process = -; -------------------------------------------------------------------------------- /catalog/userEffects/src/deleted/adderTest.dsp_DEL_10-12-051112: -------------------------------------------------------------------------------- 1 | process = +; -------------------------------------------------------------------------------- /catalog/userEffects/src/deleted/channelmixer.dsp_DEL_23-02-062513: -------------------------------------------------------------------------------- 1 | declare name "Channel Mixer"; 2 | declare author "Steve Daulton"; 3 | declare copyright "(c) Steve Daulton 2012"; 4 | declare version "1.00"; 5 | declare license "GPL"; 6 | 7 | left0 = hslider("Left_from_left _input", 0 , -1 , 1 , 0.01); 8 | left1 = hslider("Left_from_right_input", 0 , -1 , 1 , 0.01); 9 | right0 = hslider("Right_from_left _input", 0 ,-1 ,1 , 0.01); 10 | right1 = hslider("Right_from _right_input", 0 , -1 , 1 , 0.01); 11 | 12 | newleft (x) = * (left0) , * (left1) : + ; 13 | newright (x) = * (right0) , * (right1) : + ; 14 | 15 | process = _,_ <: newleft,newright; 16 | -------------------------------------------------------------------------------- /catalog/userEffects/src/deleted/cierec.dsp_DEL_10-42-020712: -------------------------------------------------------------------------------- 1 | process = 1+1; -------------------------------------------------------------------------------- /catalog/userEffects/src/deleted/delayline.dsp_DEL_02-29-110612: -------------------------------------------------------------------------------- 1 | declare name "delayline"; 2 | declare version "1.0"; 3 | declare author "Robin Gareus"; 4 | declare license "BSD"; 5 | declare copyright "(c) 2012 Robin Gareus "; 6 | 7 | process = @(hslider("delay (samples)", 0, 0, 48000, 1)); -------------------------------------------------------------------------------- /catalog/userEffects/src/deleted/filter.dsp_DEL_08-24-073013: -------------------------------------------------------------------------------- 1 | foo(x) = x+x':/(2); 2 | faa(x) = x+x'+x'':/(3); 3 | 4 | process = foo, faa; -------------------------------------------------------------------------------- /catalog/userEffects/src/deleted/two.dsp_DEL_20-07-020712: -------------------------------------------------------------------------------- 1 | process = _; -------------------------------------------------------------------------------- /catalog/userEffects/src/deleted/un.dsp_DEL_19-52-062612: -------------------------------------------------------------------------------- 1 | process = 1; -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/AmplitudeModulation.txt: -------------------------------------------------------------------------------- 1 | Sun, 13 May 12 20:56:03 +0200 2 | HarryVanHaaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 79.97.208.3 6 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/Granulator.txt: -------------------------------------------------------------------------------- 1 | Mon, 17 Dec 12 12:21:18 +0100 2 | Mayank Sanganeria 3 | mayank@ccrma.stanford.edu 4 | forwarded for: 5 | ip: 128.12.212.209 6 | 7 | Mon, 28 Jan 13 23:40:07 +0100 8 | Mayank Sanganeria 9 | stevethefiddle@gmail.com 10 | forwarded for: 11 | ip: 82.19.22.249 12 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/adder.txt: -------------------------------------------------------------------------------- 1 | Fri, 09 Dec 11 10:12:01 +0100 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 89.92.241.136 6 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/deleted/Amplifiermodel.txt_DEL_01-33-073013: -------------------------------------------------------------------------------- 1 | Fri, 22 Feb 13 18:46:20 +0100 2 | Simon Leglaive 3 | simon.leglaive@gmail.com 4 | forwarded for: 137.194.11.57, 137.194.15.198 5 | ip: 137.194.168.67 6 | 7 | Tue, 30 Jul 13 01:33:25 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 80.0.165.123 11 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/deleted/adderTest.txt_DEL_10-03-051112: -------------------------------------------------------------------------------- 1 | Fri, 11 May 12 10:02:23 +0200 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 89.92.37.134 6 | 7 | Fri, 11 May 12 10:02:50 +0200 8 | Romain Michon 9 | rmnmichon@gmail.com 10 | forwarded for: 11 | ip: 89.92.37.134 12 | 13 | Fri, 11 May 12 10:03:17 +0200 14 | EXAMPLE DELETED 15 | forwarded for: 16 | ip: 89.92.37.134 17 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/deleted/adderTest.txt_DEL_10-12-051112: -------------------------------------------------------------------------------- 1 | Fri, 11 May 12 10:11:53 +0200 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 89.92.37.134 6 | 7 | Fri, 11 May 12 10:12:19 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 89.92.37.134 11 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/deleted/channelmixer.txt_DEL_23-02-062513: -------------------------------------------------------------------------------- 1 | Mon, 08 Oct 12 11:14:00 +0200 2 | Steve Daulton 3 | stevethefiddle@gmail.com 4 | forwarded for: 5 | ip: 86.27.74.29 6 | 7 | Tue, 25 Jun 13 23:02:43 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 76.10.130.57 11 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/deleted/cierec.txt_DEL_10-42-020712: -------------------------------------------------------------------------------- 1 | Tue, 07 Feb 12 10:40:45 +0100 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 161.3.162.36 5 | ip: 161.3.1.42 6 | 7 | Tue, 07 Feb 12 10:42:14 +0100 8 | Romain Michon 9 | rmnmichon@gmail.com 10 | forwarded for: 161.3.162.36 11 | ip: 161.3.1.42 12 | 13 | Tue, 07 Feb 12 10:42:49 +0100 14 | EXAMPLE DELETED 15 | forwarded for: 161.3.162.36 16 | ip: 161.3.1.42 17 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/deleted/delayline.txt_DEL_02-29-110612: -------------------------------------------------------------------------------- 1 | Tue, 06 Nov 12 02:28:34 +0100 2 | Robin Gareus 3 | robin@gareus.org 4 | forwarded for: 5 | ip: 81.57.94.90 6 | 7 | Tue, 06 Nov 12 02:29:33 +0100 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 81.57.94.90 11 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/deleted/filter.txt_DEL_08-24-073013: -------------------------------------------------------------------------------- 1 | Sat, 14 Apr 12 01:53:39 +0200 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 68.65.169.174 6 | 7 | Tue, 30 Jul 13 08:24:51 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 80.0.165.123 11 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/deleted/two.txt_DEL_20-07-020712: -------------------------------------------------------------------------------- 1 | Tue, 07 Feb 12 17:41:55 +0100 2 | Dom 3 | fober@grame.fr 4 | forwarded for: 5 | ip: 37.8.183.118 6 | 7 | Tue, 07 Feb 12 18:05:12 +0100 8 | Dom 9 | fober@grame.fr 10 | forwarded for: 11 | ip: 37.8.180.26 12 | 13 | Tue, 07 Feb 12 18:05:52 +0100 14 | Dom 15 | fober@grame.fr 16 | forwarded for: 17 | ip: 37.8.180.26 18 | 19 | Tue, 07 Feb 12 18:07:32 +0100 20 | Dom 21 | fober@grame.fr 22 | forwarded for: 23 | ip: 37.8.180.26 24 | 25 | Tue, 07 Feb 12 20:07:31 +0100 26 | EXAMPLE DELETED 27 | forwarded for: 28 | ip: 82.230.143.21 29 | -------------------------------------------------------------------------------- /catalog/userEffects/uinfo/deleted/un.txt_DEL_19-52-062612: -------------------------------------------------------------------------------- 1 | Tue, 26 Jun 12 19:52:26 +0200 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 89.92.37.134 6 | 7 | Tue, 26 Jun 12 19:52:41 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 89.92.37.134 11 | -------------------------------------------------------------------------------- /catalog/userSynthesizers/capture/ExGringo_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userSynthesizers/capture/ExGringo_compr.png -------------------------------------------------------------------------------- /catalog/userSynthesizers/capture/NMS_SAWTOOTH_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userSynthesizers/capture/NMS_SAWTOOTH_compr.png -------------------------------------------------------------------------------- /catalog/userSynthesizers/capture/SawtoothADSRtutorial_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userSynthesizers/capture/SawtoothADSRtutorial_compr.png -------------------------------------------------------------------------------- /catalog/userSynthesizers/capture/SquareWaveTutorial_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userSynthesizers/capture/SquareWaveTutorial_compr.png -------------------------------------------------------------------------------- /catalog/userSynthesizers/capture/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userSynthesizers/capture/tt.png -------------------------------------------------------------------------------- /catalog/userSynthesizers/description/ExGringo.txt: -------------------------------------------------------------------------------- 1 | by Christophe Lebreton: 2 | This example include some metadata for iOS and Android sensors. 3 |
Voted: 1 -------------------------------------------------------------------------------- /catalog/userSynthesizers/description/NMS_SAWTOOTH.txt: -------------------------------------------------------------------------------- 1 | by nmsh: 2 | A simple tutorial how to include libraries, use the "oscillator.lib" saw1 generator, and apply an ADSR from "music.lib". 3 |
Voted: 1 -------------------------------------------------------------------------------- /catalog/userSynthesizers/description/SawtoothADSRtutorial.txt: -------------------------------------------------------------------------------- 1 | by pied: 2 | A simple tutorial how to include libraries, use the "oscillator.lib" saw1 generator, and apply an ADSR from "music.lib". 3 |
Voted: 1 -------------------------------------------------------------------------------- /catalog/userSynthesizers/description/SquareWaveTutorial.txt: -------------------------------------------------------------------------------- 1 | by HarryVanHaaren: 2 | Square wave generator tutorial from the Faust Tutorial.pdf 3 |
Voted: 0 -------------------------------------------------------------------------------- /catalog/userSynthesizers/src/NMS_SAWTOOTH.dsp: -------------------------------------------------------------------------------- 1 | // import the needed libraries 2 | import("music.lib"); 3 | import("oscillator.lib"); 4 | 5 | // generate a sawtooth wave, using "saw1" from "oscillator.lib" 6 | sawGen = saw1( vslider("Freq", 60, 0, 127, 0.1) ); 7 | 8 | // get variables for A D S and R stages, using sliders 9 | attack = 1.0/(SR*nentry("[1:]attack [unit:ms][style:knob]", 20, 1, 1000, 1)/1000); 10 | decay = nentry("[2:]decay[style:knob]", 2, 1, 100, 0.1)/100000; 11 | sustain = nentry("[3:]sustain [unit:pc][style:knob]", 10, 1, 100, 0.1)/100; 12 | release = nentry("[4:]release[style:knob]", 10, 1, 100, 0.1)/100000; 13 | 14 | // set the process function, using the button to trigger the ADSR, and then volume scale the sawtooth 15 | process = button("play"): hgroup("", adsr(attack, decay, sustain, release) : *(sawGen)); -------------------------------------------------------------------------------- /catalog/userSynthesizers/src/SawtoothADSRtutorial.dsp: -------------------------------------------------------------------------------- 1 | // import the needed libraries 2 | import("music.lib"); 3 | import("oscillator.lib"); 4 | 5 | // generate a sawtooth wave, using "saw1" from "oscillator.lib" 6 | sawGen = saw1( vslider("Freq", 60, 0, 127, 0.1) ); 7 | 8 | // get variables for A D S and R stages, using sliders 9 | attack = 1.0/(SR*nentry("[1:]attack [unit:ms][style:knob]", 20, 1, 1000, 1)/1000); 10 | decay = nentry("[2:]decay[style:knob]", 2, 1, 100, 0.1)/100000; 11 | sustain = nentry("[3:]sustain [unit:pc][style:knob]", 10, 1, 100, 0.1)/100; 12 | release = nentry("[4:]release[style:knob]", 10, 1, 100, 0.1)/100000; 13 | 14 | // set the process function, using the button to trigger the ADSR, and then volume scale the sawtooth 15 | process = button("play"): hgroup("", adsr(attack, decay, sustain, release) : *(sawGen)); -------------------------------------------------------------------------------- /catalog/userSynthesizers/src/SquareWaveTutorial.dsp: -------------------------------------------------------------------------------- 1 | //--------------------------------- 2 | // A square wave oscillator 3 | //--------------------------------- 4 | 5 | T = hslider("Period",1,0.1,100.,0.1); // Period (ms) 6 | 7 | N = 44100./1000.*T:int; // The period in samples 8 | 9 | a = hslider("Cyclic ratio",0.5,0,1,0.1); // Cyclic ratio 10 | 11 | i = +(1)~%(N):-(1); // 0,1,2...,n 12 | 13 | process = i,N*a : < : *(2) : -(1) ; 14 | -------------------------------------------------------------------------------- /catalog/userSynthesizers/src/deleted/one.dsp_DEL_17-30-020712: -------------------------------------------------------------------------------- 1 | process = 1; -------------------------------------------------------------------------------- /catalog/userSynthesizers/src/deleted/test.dsp_DEL_06-34-102413: -------------------------------------------------------------------------------- 1 | process = +; -------------------------------------------------------------------------------- /catalog/userSynthesizers/uinfo/ExGringo.txt: -------------------------------------------------------------------------------- 1 | Fri, 25 Oct 13 03:14:34 +0200 2 | Christophe Lebreton 3 | lebreton@grame.fr 4 | forwarded for: 5 | ip: 61.152.210.141 6 | -------------------------------------------------------------------------------- /catalog/userSynthesizers/uinfo/NMS_SAWTOOTH.txt: -------------------------------------------------------------------------------- 1 | Thu, 19 Sep 13 08:27:14 +0200 2 | nmsh 3 | numosh@gmail.com 4 | forwarded for: 172.16.4.34 5 | ip: 202.137.8.185 6 | -------------------------------------------------------------------------------- /catalog/userSynthesizers/uinfo/SawtoothADSRtutorial.txt: -------------------------------------------------------------------------------- 1 | Thu, 10 May 12 23:24:55 +0200 2 | HarryVanHaaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 79.97.208.3 6 | 7 | Wed, 21 Nov 12 15:55:17 +0100 8 | pied 9 | faurep43@gmail.com 10 | forwarded for: 11 | ip: 94.127.14.17 12 | -------------------------------------------------------------------------------- /catalog/userSynthesizers/uinfo/SquareWaveTutorial.txt: -------------------------------------------------------------------------------- 1 | Sat, 05 May 12 18:33:36 +0200 2 | HarryVanHaaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 89.18.71.207 6 | -------------------------------------------------------------------------------- /catalog/userSynthesizers/uinfo/deleted/ExGringo.txt_DEL_03-12-102513: -------------------------------------------------------------------------------- 1 | Fri, 25 Oct 13 03:11:36 +0200 2 | Christophe Lebreton 3 | lebreton@grame.fr 4 | forwarded for: 5 | ip: 61.152.210.141 6 | 7 | Fri, 25 Oct 13 03:12:29 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 61.152.210.141 11 | -------------------------------------------------------------------------------- /catalog/userSynthesizers/uinfo/deleted/Harpe.txt_DEL_19-12-040913: -------------------------------------------------------------------------------- 1 | Mon, 09 Jan 12 15:33:34 +0100 2 | Yann Orlarey 3 | orlarey@grame.fr 4 | forwarded for: 5 | ip: 194.5.49.2 6 | 7 | Thu, 09 Feb 12 12:31:23 +0100 8 | lipzzzz 9 | philemon1@mac.com 10 | forwarded for: 11 | ip: 92.156.160.89 12 | 13 | Tue, 09 Apr 13 19:12:46 +0200 14 | EXAMPLE DELETED 15 | forwarded for: 16 | ip: 77.180.30.215 17 | -------------------------------------------------------------------------------- /catalog/userSynthesizers/uinfo/deleted/one.txt_DEL_17-30-020712: -------------------------------------------------------------------------------- 1 | Tue, 07 Feb 12 17:29:54 +0100 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 161.3.111.150 5 | ip: 161.3.1.42 6 | 7 | Tue, 07 Feb 12 17:30:34 +0100 8 | EXAMPLE DELETED 9 | forwarded for: 161.3.111.150 10 | ip: 161.3.1.42 11 | -------------------------------------------------------------------------------- /catalog/userSynthesizers/uinfo/deleted/test.txt_DEL_06-34-102413: -------------------------------------------------------------------------------- 1 | Thu, 24 Oct 13 06:34:16 +0200 2 | Romain 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 128.12.135.40 6 | 7 | Thu, 24 Oct 13 06:34:34 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 128.12.135.40 11 | -------------------------------------------------------------------------------- /catalog/userTools/capture/Capture du 2013-05-14 02:21:39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userTools/capture/Capture du 2013-05-14 02:21:39.png -------------------------------------------------------------------------------- /catalog/userTools/capture/MidSideMixer_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userTools/capture/MidSideMixer_compr.png -------------------------------------------------------------------------------- /catalog/userTools/capture/mult_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userTools/capture/mult_compr.png -------------------------------------------------------------------------------- /catalog/userTools/capture/tutSimpleAmplifier_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userTools/capture/tutSimpleAmplifier_compr.png -------------------------------------------------------------------------------- /catalog/userTools/capture/tutSimpleDelay_compr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/catalog/userTools/capture/tutSimpleDelay_compr.png -------------------------------------------------------------------------------- /catalog/userTools/description/MidSideMixer.txt: -------------------------------------------------------------------------------- 1 | by Baptiste Chatel: 2 | Adjust middle and side gains of a stereo input. 3 |
Voted: 2 -------------------------------------------------------------------------------- /catalog/userTools/description/mult.txt: -------------------------------------------------------------------------------- 1 | by Romain Michon: 2 | Multiply two signals together. 3 |
Voted: 6 -------------------------------------------------------------------------------- /catalog/userTools/description/tutSimpleAmplifier.txt: -------------------------------------------------------------------------------- 1 | by Harry van Haaren: 2 | Simple amplifier tutorial 3 |
Voted: 0 -------------------------------------------------------------------------------- /catalog/userTools/description/tutSimpleDelay.txt: -------------------------------------------------------------------------------- 1 | by Harry van Haaren: 2 | Delay line, mixed with original. Has variable delay amplitude. 3 |
Voted: 1 -------------------------------------------------------------------------------- /catalog/userTools/src/MidSideMixer.dsp: -------------------------------------------------------------------------------- 1 | import("effect.lib"); 2 | 3 | gain(x) = x : db2linear : smooth(0.999); 4 | 5 | mid = ((_+_)/2)*(gain(vslider("[1] mid [unit:dB]", 0, -70, 0, 0.1))); 6 | side = ((_-_)/2)*(gain(vslider("[2] side [unit:dB]", 0, -70, 0, 0.1))); 7 | 8 | process = (_,_)<:hgroup("M/S",(mid,side))<:_,_,_,_:+,-; -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/2channelMonoAmp.dsp_DEL_08-25-073013: -------------------------------------------------------------------------------- 1 | declare name "noise"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | 7 | // Stereo Amp for AndreeCZ 8 | vol1 = vslider("vol_0", 0, 0, 2, 0.001); 9 | vol2 = vslider("vol_1", 0, 0, 2, 0.001); 10 | 11 | process = _ * vol1, _ * vol2 ; 12 | -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/MSdecoder.dsp_DEL_15-55-052013: -------------------------------------------------------------------------------- 1 | declare name "MSdecoder"; 2 | declare version "1.0"; 3 | declare author "Robin Gareus"; 4 | declare license "BSD"; 5 | declare copyright "(c) 2013 Robin Gareus "; 6 | 7 | outL (x) = * (1.0) , * (1.0) : + ; 8 | outR (x) = * (1.0) , * (-1.0) : + ; 9 | process = _,_ <: outL,outR; 10 | -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/add.dsp_DEL_18-00-022912: -------------------------------------------------------------------------------- 1 | process = -; -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/delayline.dsp_DEL_11-17-071813: -------------------------------------------------------------------------------- 1 | declare name "delayline"; 2 | declare version "1.0"; 3 | declare author "Robin Gareus"; 4 | declare license "BSD"; 5 | declare copyright "(c) 2012 Robin Gareus "; 6 | 7 | process = @(hslider("delay (samples)", 0, 0, 48000, 1)); -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/lr2ms.dsp_DEL_01-41-073013: -------------------------------------------------------------------------------- 1 | plus = _,_<:+; 2 | minus = _,_<:-; 3 | 4 | stereo2midside = _,_<:plus/2,minus/2; 5 | 6 | midside2stereo = _,_<:plus,minus; 7 | 8 | cross2 = _,_,_,_ <: _,!,_,!,!,_,!,_; 9 | 10 | switch2stereo(bpc) = cross2 : select2(bpc), select2(bpc); 11 | 12 | process = _,_<:switch2stereo(checkbox("MS to LR"),stereo2midside,midside2stereo); -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/sub.dsp_DEL_17-03-022912: -------------------------------------------------------------------------------- 1 | process = -; -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/troul.dsp_DEL_21-41-040212: -------------------------------------------------------------------------------- 1 | declare name "echo"; 2 | declare version "1.0"; 3 | declare author "Grame"; 4 | declare license "BSD"; 5 | declare copyright "(c) GRAME 2006"; 6 | //----------------------------------------------- 7 | // A Simple Echo 8 | //----------------------------------------------- 9 | 10 | import("music.lib"); 11 | 12 | process = vgroup("echo-simple", echo1s); 13 | -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/tt.dsp_DEL_17-13-022912: -------------------------------------------------------------------------------- 1 | process = 1; -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/tutSimpleAmplifier.dsp_DEL_17-09-041613: -------------------------------------------------------------------------------- 1 | declare name "simpleAmp"; 2 | 3 | import("effect.lib"); // for smooth() and db2linear 4 | 5 | // amp takes x, and multiples by the smoothed hslider value 6 | amp(x) = x * hslider("level (db)", 0, -96, 4, 0.1) : db2linear : smooth(0.999); 7 | 8 | // we define process to take a mono input, then do amp, then output mono 9 | process = _ : amp : _ ; 10 | -------------------------------------------------------------------------------- /catalog/userTools/src/deleted/tutSquareModBass.dsp_DEL_01-37-073013: -------------------------------------------------------------------------------- 1 | declare name "squareModBass"; 2 | 3 | import("effect.lib"); // for smooth() 4 | import("oscillator.lib"); // for smooth() 5 | 6 | // frequency input 7 | freq = hslider("freq", 40, 20, 400, 1); 8 | 9 | // modulation input 10 | modulation = hslider("modulation", 0, 0, 20, 0.001); 11 | 12 | // generate sin wave modulation 13 | modOut = 1 + osc( freq ); 14 | 15 | // ammended modulation wave 16 | amendedModOut = freq + (modulation*modOut*freq); 17 | 18 | // Generate a square wave 19 | mainOut = squarewave( amendedModOut ); 20 | 21 | // we define process to output the generated sound in mono 22 | process = mainOut : _ ; 23 | -------------------------------------------------------------------------------- /catalog/userTools/src/mult.dsp: -------------------------------------------------------------------------------- 1 | process = -; -------------------------------------------------------------------------------- /catalog/userTools/src/tutSimpleAmplifier.dsp: -------------------------------------------------------------------------------- 1 | declare name "simpleAmp"; 2 | 3 | import("effect.lib"); // for smooth() 4 | 5 | // amp takes x, and multiples by the smoothed hslider value 6 | amp = hslider("level", 0, 0, 1, 0.001) : smooth(0.999); 7 | 8 | // we define process to take a mono input and multiply by amp, then output mono 9 | process = _ * amp : _ ; 10 | -------------------------------------------------------------------------------- /catalog/userTools/src/tutSimpleDelay.dsp: -------------------------------------------------------------------------------- 1 | declare name "simpleDelay"; 2 | 3 | import("effect.lib"); // for smooth 4 | import("music.lib"); // for delay1s 5 | 6 | // amplitude value 7 | amp = hslider("level", 0, 0, 1, 0.001) : smooth(0.999); 8 | 9 | // the length of the delay 10 | delayAmount = hslider("delay (samples)", 0, 0, 48000, 1); 11 | 12 | // delay1s is a one second delay, takes samples as parameter 13 | // multiply by amp to change the delay volume 14 | mydelay = amp * delay1s(delayAmount); 15 | 16 | // we define process to take a mono input, split it, delay one half, 17 | // then add back the original, and finally output mono 18 | process = _ <: mydelay + _ ; 19 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/MidSideMixer.txt: -------------------------------------------------------------------------------- 1 | Tue, 14 May 13 02:23:12 +0200 2 | Baptiste Chatel 3 | baptiste.chatel@gmail.com 4 | forwarded for: 5 | ip: 77.201.25.226 6 | 7 | Tue, 14 May 13 02:27:25 +0200 8 | Baptiste Chatel 9 | baptiste.chatel@gmail.com 10 | forwarded for: 11 | ip: 77.201.25.226 12 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/2channelMonoAmp.txt_DEL_08-25-073013: -------------------------------------------------------------------------------- 1 | Sun, 07 Jul 13 15:23:35 +0200 2 | Harry van Haaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 89.18.71.207 6 | 7 | Sun, 07 Jul 13 15:39:28 +0200 8 | Harry van Haaren 9 | harryhaaren@gmail.com 10 | forwarded for: 11 | ip: 89.18.71.207 12 | 13 | Tue, 30 Jul 13 08:25:42 +0200 14 | EXAMPLE DELETED 15 | forwarded for: 16 | ip: 80.0.165.123 17 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/MSdecoder.txt_DEL_15-55-052013: -------------------------------------------------------------------------------- 1 | Fri, 17 May 13 00:52:59 +0200 2 | Robin Gareus 3 | robin@gareus.org 4 | forwarded for: 5 | ip: 81.57.94.90 6 | 7 | Fri, 17 May 13 01:00:33 +0200 8 | Robin Gareus 9 | robin@gareus.org 10 | forwarded for: 11 | ip: 81.57.94.90 12 | 13 | Mon, 20 May 13 15:55:41 +0200 14 | EXAMPLE DELETED 15 | forwarded for: 16 | ip: 81.57.94.90 17 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/add.txt_DEL_18-00-022912: -------------------------------------------------------------------------------- 1 | Wed, 29 Feb 12 17:59:59 +0100 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 194.5.49.8 6 | 7 | Wed, 29 Feb 12 18:00:08 +0100 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 194.5.49.8 11 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/delayline.txt_DEL_11-17-071813: -------------------------------------------------------------------------------- 1 | Tue, 06 Nov 12 02:29:17 +0100 2 | Robin Gareus 3 | robin@gareus.org 4 | forwarded for: 5 | ip: 81.57.94.90 6 | 7 | Thu, 18 Jul 13 11:17:41 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 146.103.254.11 11 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/lr2ms.txt_DEL_01-41-073013: -------------------------------------------------------------------------------- 1 | Mon, 20 May 13 22:23:41 +0200 2 | Baptiste Chatel 3 | baptiste.chatel@gmail.com 4 | forwarded for: 5 | ip: 77.201.25.150 6 | 7 | Tue, 30 Jul 13 01:41:13 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 80.0.165.123 11 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/sub.txt_DEL_16-43-022912: -------------------------------------------------------------------------------- 1 | Fri, 09 Dec 11 13:41:44 +0100 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 161.3.162.36 5 | ip: 161.3.1.42 6 | 7 | Tue, 24 Jan 12 08:44:40 +0100 8 | Romain Michon 9 | rmnmichon@gmail.com 10 | forwarded for: 11 | ip: 89.92.241.136 12 | 13 | Wed, 29 Feb 12 16:43:15 +0100 14 | EXAMPLE DELETED 15 | forwarded for: 172.16.134.87 16 | ip: 193.52.100.9 17 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/sub.txt_DEL_17-03-022912: -------------------------------------------------------------------------------- 1 | Fri, 09 Dec 11 10:12:01 +0100 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 89.92.241.136 6 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/troul.txt_DEL_21-41-040212: -------------------------------------------------------------------------------- 1 | Mon, 02 Apr 12 21:41:05 +0200 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 89.92.241.136 6 | 7 | Mon, 02 Apr 12 21:41:25 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 89.92.241.136 11 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/tt.txt_DEL_17-13-022912: -------------------------------------------------------------------------------- 1 | Wed, 29 Feb 12 17:09:35 +0100 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 194.5.49.8 6 | 7 | Wed, 29 Feb 12 17:13:13 +0100 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 194.5.49.8 11 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/tutSimpleAmplifier.txt_DEL_17-09-041613: -------------------------------------------------------------------------------- 1 | Tue, 16 Apr 13 17:05:39 +0200 2 | Harry van Haaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 188.141.100.134 6 | 7 | Tue, 16 Apr 13 17:09:29 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 188.141.100.134 11 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/tutSineModBass.txt_DEL_08-25-073013: -------------------------------------------------------------------------------- 1 | Wed, 17 Apr 13 16:41:42 +0200 2 | Harry van Haaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 193.1.104.2 6 | 7 | Tue, 30 Jul 13 08:25:09 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 80.0.165.123 11 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/tutSquareModBass.txt_DEL_01-37-073013: -------------------------------------------------------------------------------- 1 | Tue, 16 Apr 13 21:08:43 +0200 2 | Harry van Haaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 188.141.100.134 6 | 7 | Tue, 30 Jul 13 01:37:18 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 80.0.165.123 11 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/deleted/tutSquareModBassFiltered.txt_DEL_01-37-073013: -------------------------------------------------------------------------------- 1 | Tue, 16 Apr 13 21:35:12 +0200 2 | Harry van Haaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 188.141.100.134 6 | 7 | Tue, 30 Jul 13 01:37:07 +0200 8 | EXAMPLE DELETED 9 | forwarded for: 10 | ip: 80.0.165.123 11 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/mult.txt: -------------------------------------------------------------------------------- 1 | Wed, 29 Feb 12 17:03:06 +0100 2 | Romain Michon 3 | rmnmichon@gmail.com 4 | forwarded for: 5 | ip: 194.5.49.8 6 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/tutSimpleAmplifier.txt: -------------------------------------------------------------------------------- 1 | Tue, 16 Apr 13 17:10:19 +0200 2 | Harry van Haaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 188.141.100.134 6 | 7 | Tue, 16 Apr 13 17:42:15 +0200 8 | Harry van Haaren 9 | harryhaaren@gmail.com 10 | forwarded for: 11 | ip: 188.141.100.134 12 | -------------------------------------------------------------------------------- /catalog/userTools/uinfo/tutSimpleDelay.txt: -------------------------------------------------------------------------------- 1 | Tue, 16 Apr 13 17:37:05 +0200 2 | Harry van Haaren 3 | harryhaaren@gmail.com 4 | forwarded for: 5 | ip: 188.141.100.134 6 | -------------------------------------------------------------------------------- /codemirror/.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt text 2 | *.js text 3 | *.html text 4 | *.md text 5 | *.json text 6 | *.yml text 7 | *.css text 8 | *.svg text 9 | -------------------------------------------------------------------------------- /codemirror/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | /test*.html 4 | .tern-* 5 | *~ 6 | *.swp 7 | .idea 8 | *.iml 9 | -------------------------------------------------------------------------------- /codemirror/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /demo 3 | /doc 4 | /test 5 | /test*.html 6 | /index.html 7 | /mode/*/*test.js 8 | /mode/*/*.html 9 | /mode/index.html 10 | .* 11 | -------------------------------------------------------------------------------- /codemirror/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - stable 4 | sudo: false 5 | -------------------------------------------------------------------------------- /codemirror/addon/dialog/dialog.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-dialog { 2 | position: absolute; 3 | left: 0; right: 0; 4 | background: inherit; 5 | z-index: 15; 6 | padding: .1em .8em; 7 | overflow: hidden; 8 | color: inherit; 9 | } 10 | 11 | .CodeMirror-dialog-top { 12 | border-bottom: 1px solid #eee; 13 | top: 0; 14 | } 15 | 16 | .CodeMirror-dialog-bottom { 17 | border-top: 1px solid #eee; 18 | bottom: 0; 19 | } 20 | 21 | .CodeMirror-dialog input { 22 | border: none; 23 | outline: none; 24 | background: transparent; 25 | width: 20em; 26 | color: inherit; 27 | font-family: monospace; 28 | } 29 | 30 | .CodeMirror-dialog button { 31 | font-size: 70%; 32 | } 33 | -------------------------------------------------------------------------------- /codemirror/addon/display/fullscreen.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-fullscreen { 2 | position: fixed; 3 | top: 0; left: 0; right: 0; bottom: 0; 4 | height: auto; 5 | z-index: 9; 6 | } 7 | -------------------------------------------------------------------------------- /codemirror/addon/fold/foldgutter.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-foldmarker { 2 | color: blue; 3 | text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px; 4 | font-family: arial; 5 | line-height: .3; 6 | cursor: pointer; 7 | } 8 | .CodeMirror-foldgutter { 9 | width: .7em; 10 | } 11 | .CodeMirror-foldgutter-open, 12 | .CodeMirror-foldgutter-folded { 13 | cursor: pointer; 14 | } 15 | .CodeMirror-foldgutter-open:after { 16 | content: "\25BE"; 17 | } 18 | .CodeMirror-foldgutter-folded:after { 19 | content: "\25B8"; 20 | } 21 | -------------------------------------------------------------------------------- /codemirror/addon/hint/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | li.CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /codemirror/addon/lint/yaml-lint.js: -------------------------------------------------------------------------------- 1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others 2 | // Distributed under an MIT license: http://codemirror.net/LICENSE 3 | 4 | (function(mod) { 5 | if (typeof exports == "object" && typeof module == "object") // CommonJS 6 | mod(require("../../lib/codemirror")); 7 | else if (typeof define == "function" && define.amd) // AMD 8 | define(["../../lib/codemirror"], mod); 9 | else // Plain browser env 10 | mod(CodeMirror); 11 | })(function(CodeMirror) { 12 | "use strict"; 13 | 14 | // Depends on js-yaml.js from https://github.com/nodeca/js-yaml 15 | 16 | // declare global: jsyaml 17 | 18 | CodeMirror.registerHelper("lint", "yaml", function(text) { 19 | var found = []; 20 | try { jsyaml.load(text); } 21 | catch(e) { 22 | var loc = e.mark; 23 | found.push({ from: CodeMirror.Pos(loc.line, loc.column), to: CodeMirror.Pos(loc.line, loc.column), message: e.message }); 24 | } 25 | return found; 26 | }); 27 | 28 | }); 29 | -------------------------------------------------------------------------------- /codemirror/addon/mode/multiplex_test.js: -------------------------------------------------------------------------------- 1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others 2 | // Distributed under an MIT license: http://codemirror.net/LICENSE 3 | 4 | (function() { 5 | CodeMirror.defineMode("markdown_with_stex", function(){ 6 | var inner = CodeMirror.getMode({}, "stex"); 7 | var outer = CodeMirror.getMode({}, "markdown"); 8 | 9 | var innerOptions = { 10 | open: '$', 11 | close: '$', 12 | mode: inner, 13 | delimStyle: 'delim', 14 | innerStyle: 'inner' 15 | }; 16 | 17 | return CodeMirror.multiplexingMode(outer, innerOptions); 18 | }); 19 | 20 | var mode = CodeMirror.getMode({}, "markdown_with_stex"); 21 | 22 | function MT(name) { 23 | test.mode( 24 | name, 25 | mode, 26 | Array.prototype.slice.call(arguments, 1), 27 | 'multiplexing'); 28 | } 29 | 30 | MT( 31 | "stexInsideMarkdown", 32 | "[strong **Equation:**] [delim $][inner&tag \\pi][delim $]"); 33 | })(); 34 | -------------------------------------------------------------------------------- /codemirror/addon/search/matchesonscrollbar.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-search-match { 2 | background: gold; 3 | border-top: 1px solid orange; 4 | border-bottom: 1px solid orange; 5 | -moz-box-sizing: border-box; 6 | box-sizing: border-box; 7 | opacity: .5; 8 | } 9 | -------------------------------------------------------------------------------- /codemirror/bin/authors.sh: -------------------------------------------------------------------------------- 1 | # Combine existing list of authors with everyone known in git, sort, add header. 2 | tail --lines=+3 AUTHORS > AUTHORS.tmp 3 | git log --format='%aN' >> AUTHORS.tmp 4 | echo -e "List of CodeMirror contributors. Updated before every release.\n" > AUTHORS 5 | sort -u AUTHORS.tmp >> AUTHORS 6 | rm -f AUTHORS.tmp 7 | -------------------------------------------------------------------------------- /codemirror/bin/lint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | process.exit(require("../test/lint").ok ? 0 : 1); 4 | -------------------------------------------------------------------------------- /codemirror/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "codemirror", 3 | "main": ["lib/codemirror.js", "lib/codemirror.css"], 4 | "ignore": [ 5 | "**/.*", 6 | "node_modules", 7 | "components", 8 | "bin", 9 | "demo", 10 | "doc", 11 | "test", 12 | "index.html", 13 | "package.json", 14 | "mode/*/*test.js", 15 | "mode/*/*.html" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /codemirror/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/codemirror/doc/logo.png -------------------------------------------------------------------------------- /codemirror/doc/yinyang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/codemirror/doc/yinyang.png -------------------------------------------------------------------------------- /codemirror/mode/css/gss_test.js: -------------------------------------------------------------------------------- 1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others 2 | // Distributed under an MIT license: http://codemirror.net/LICENSE 3 | 4 | (function() { 5 | "use strict"; 6 | 7 | var mode = CodeMirror.getMode({indentUnit: 2}, "text/x-gss"); 8 | function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1), "gss"); } 9 | 10 | MT("atComponent", 11 | "[def @component] {", 12 | "[tag foo] {", 13 | " [property color]: [keyword black];", 14 | "}", 15 | "}"); 16 | 17 | })(); 18 | -------------------------------------------------------------------------------- /codemirror/mode/ruby/test.js: -------------------------------------------------------------------------------- 1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others 2 | // Distributed under an MIT license: http://codemirror.net/LICENSE 3 | 4 | (function() { 5 | var mode = CodeMirror.getMode({indentUnit: 2}, "ruby"); 6 | function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); } 7 | 8 | MT("divide_equal_operator", 9 | "[variable bar] [operator /=] [variable foo]"); 10 | 11 | MT("divide_equal_operator_no_spacing", 12 | "[variable foo][operator /=][number 42]"); 13 | 14 | })(); 15 | -------------------------------------------------------------------------------- /codemirror/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- 1 | span.cm-underlined { 2 | text-decoration: underline; 3 | } 4 | span.cm-strikethrough { 5 | text-decoration: line-through; 6 | } 7 | span.cm-brace { 8 | color: #170; 9 | font-weight: bold; 10 | } 11 | span.cm-table { 12 | color: blue; 13 | font-weight: bold; 14 | } 15 | -------------------------------------------------------------------------------- /codemirror/mode/tiki/tiki.css: -------------------------------------------------------------------------------- 1 | .cm-tw-syntaxerror { 2 | color: #FFF; 3 | background-color: #900; 4 | } 5 | 6 | .cm-tw-deleted { 7 | text-decoration: line-through; 8 | } 9 | 10 | .cm-tw-header5 { 11 | font-weight: bold; 12 | } 13 | .cm-tw-listitem:first-child { /*Added first child to fix duplicate padding when highlighting*/ 14 | padding-left: 10px; 15 | } 16 | 17 | .cm-tw-box { 18 | border-top-width: 0px ! important; 19 | border-style: solid; 20 | border-width: 1px; 21 | border-color: inherit; 22 | } 23 | 24 | .cm-tw-underline { 25 | text-decoration: underline; 26 | } -------------------------------------------------------------------------------- /codemirror/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "codemirror", 3 | "version":"5.6.1", 4 | "main": "lib/codemirror.js", 5 | "description": "In-browser code editing made bearable", 6 | "license": "MIT", 7 | "directories": {"lib": "./lib"}, 8 | "scripts": {"test": "node ./test/run.js"}, 9 | "devDependencies": {"node-static": "0.6.0", 10 | "phantomjs": "1.9.2-5", 11 | "blint": ">=0.1.1"}, 12 | "bugs": "http://github.com/codemirror/CodeMirror/issues", 13 | "keywords": ["JavaScript", "CodeMirror", "Editor"], 14 | "homepage": "http://codemirror.net", 15 | "maintainers":[{"name": "Marijn Haverbeke", 16 | "email": "marijnh@gmail.com", 17 | "web": "http://marijnhaverbeke.nl"}], 18 | "repository": {"type": "git", 19 | "url": "https://github.com/codemirror/CodeMirror.git"} 20 | } 21 | -------------------------------------------------------------------------------- /codemirror/test/lint.js: -------------------------------------------------------------------------------- 1 | var blint = require("blint"); 2 | 3 | ["mode", "lib", "addon", "keymap"].forEach(function(dir) { 4 | blint.checkDir(dir, { 5 | browser: true, 6 | allowedGlobals: ["CodeMirror", "define", "test", "requirejs"], 7 | blob: "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http:\/\/codemirror.net\/LICENSE\n\n" 8 | }); 9 | }); 10 | 11 | module.exports = {ok: blint.success()}; 12 | -------------------------------------------------------------------------------- /codemirror/test/mode_test.css: -------------------------------------------------------------------------------- 1 | .mt-output .mt-token { 2 | border: 1px solid #ddd; 3 | white-space: pre; 4 | font-family: "Consolas", monospace; 5 | text-align: center; 6 | } 7 | 8 | .mt-output .mt-style { 9 | font-size: x-small; 10 | } 11 | 12 | .mt-output .mt-state { 13 | font-size: x-small; 14 | vertical-align: top; 15 | } 16 | 17 | .mt-output .mt-state-row { 18 | display: none; 19 | } 20 | 21 | .mt-state-unhide .mt-output .mt-state-row { 22 | display: table-row; 23 | } 24 | -------------------------------------------------------------------------------- /codemirror/test/run.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var ok = require("./lint").ok; 4 | 5 | var files = new (require('node-static').Server)(); 6 | 7 | var server = require('http').createServer(function (req, res) { 8 | req.addListener('end', function () { 9 | files.serve(req, res, function (err/*, result */) { 10 | if (err) { 11 | console.error(err); 12 | process.exit(1); 13 | } 14 | }); 15 | }).resume(); 16 | }).addListener('error', function (err) { 17 | throw err; 18 | }).listen(3000, function () { 19 | var childProcess = require('child_process'); 20 | var phantomjs = require("phantomjs"); 21 | var childArgs = [ 22 | require("path").join(__dirname, 'phantom_driver.js') 23 | ]; 24 | childProcess.execFile(phantomjs.path, childArgs, function (err, stdout, stderr) { 25 | server.close(); 26 | console.log(stdout); 27 | if (err) console.error(err); 28 | if (stderr) console.error(stderr); 29 | process.exit(err || stderr || !ok ? 1 : 0); 30 | }); 31 | }); 32 | -------------------------------------------------------------------------------- /codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /codemirror/theme/elegant.css: -------------------------------------------------------------------------------- 1 | .cm-s-elegant span.cm-number, .cm-s-elegant span.cm-string, .cm-s-elegant span.cm-atom { color: #762; } 2 | .cm-s-elegant span.cm-comment { color: #262; font-style: italic; line-height: 1em; } 3 | .cm-s-elegant span.cm-meta { color: #555; font-style: italic; line-height: 1em; } 4 | .cm-s-elegant span.cm-variable { color: black; } 5 | .cm-s-elegant span.cm-variable-2 { color: #b11; } 6 | .cm-s-elegant span.cm-qualifier { color: #555; } 7 | .cm-s-elegant span.cm-keyword { color: #730; } 8 | .cm-s-elegant span.cm-builtin { color: #30a; } 9 | .cm-s-elegant span.cm-link { color: #762; } 10 | .cm-s-elegant span.cm-error { background-color: #fdd; } 11 | 12 | .cm-s-elegant .CodeMirror-activeline-background { background: #e8f2ff; } 13 | .cm-s-elegant .CodeMirror-matchingbracket { outline:1px solid grey; color:black !important; } 14 | -------------------------------------------------------------------------------- /codemirror/theme/neat.css: -------------------------------------------------------------------------------- 1 | .cm-s-neat span.cm-comment { color: #a86; } 2 | .cm-s-neat span.cm-keyword { line-height: 1em; font-weight: bold; color: blue; } 3 | .cm-s-neat span.cm-string { color: #a22; } 4 | .cm-s-neat span.cm-builtin { line-height: 1em; font-weight: bold; color: #077; } 5 | .cm-s-neat span.cm-special { line-height: 1em; font-weight: bold; color: #0aa; } 6 | .cm-s-neat span.cm-variable { color: black; } 7 | .cm-s-neat span.cm-number, .cm-s-neat span.cm-atom { color: #3a3; } 8 | .cm-s-neat span.cm-meta { color: #555; } 9 | .cm-s-neat span.cm-link { color: #3a3; } 10 | 11 | .cm-s-neat .CodeMirror-activeline-background { background: #e8f2ff; } 12 | .cm-s-neat .CodeMirror-matchingbracket { outline:1px solid grey; color:black !important; } 13 | -------------------------------------------------------------------------------- /erreur.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Standard Error Page 5 | 6 | 7 | 8 | 9 |

Sorry

10 |

Impossible to process your request for the moment.

11 |

Please try later.

12 | 13 |

Error : __msg__

14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/favicon.ico -------------------------------------------------------------------------------- /full_screen.php: -------------------------------------------------------------------------------- 1 | "; 17 | if($_SESSION['fullScreenMode'] == 1){ 18 | echo "window.open(\"http://faust.grame.fr/onlinecompiler/index.php\")"; 19 | } 20 | if($_SESSION['fullScreenMode'] == 0) echo "window.open(\"http://faust.grame.fr/index.php/online-examples\",\"_self\")"; 21 | echo " "; 22 | 23 | ?> 24 | -------------------------------------------------------------------------------- /images/AutoDoc-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/AutoDoc-large.png -------------------------------------------------------------------------------- /images/AutoDoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/AutoDoc.png -------------------------------------------------------------------------------- /images/CppCode-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/CppCode-large.png -------------------------------------------------------------------------------- /images/CppCode-large.png.bckup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/CppCode-large.png.bckup -------------------------------------------------------------------------------- /images/CppCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/CppCode.png -------------------------------------------------------------------------------- /images/ExecFile-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/ExecFile-large.png -------------------------------------------------------------------------------- /images/ExecFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/ExecFile.png -------------------------------------------------------------------------------- /images/FaustCode-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/FaustCode-large.png -------------------------------------------------------------------------------- /images/FaustCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/FaustCode.png -------------------------------------------------------------------------------- /images/SvgDiag-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/SvgDiag-large.png -------------------------------------------------------------------------------- /images/SvgDiag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/SvgDiag.png -------------------------------------------------------------------------------- /images/captureDef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/captureDef.png -------------------------------------------------------------------------------- /images/frame-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/frame-large.png -------------------------------------------------------------------------------- /images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/frame.png -------------------------------------------------------------------------------- /images/fullScreen-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/fullScreen-large.png -------------------------------------------------------------------------------- /images/fullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/fullScreen.png -------------------------------------------------------------------------------- /images/helpButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/helpButton.png -------------------------------------------------------------------------------- /images/hideCatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/hideCatalog.png -------------------------------------------------------------------------------- /images/hideSaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/hideSaver.png -------------------------------------------------------------------------------- /images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/icon.ico -------------------------------------------------------------------------------- /images/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/navigation.png -------------------------------------------------------------------------------- /images/refreshButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/refreshButton.png -------------------------------------------------------------------------------- /images/saveButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/saveButton.png -------------------------------------------------------------------------------- /images/showCatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/showCatalog.png -------------------------------------------------------------------------------- /images/showSaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/showSaver.png -------------------------------------------------------------------------------- /images/voteButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/images/voteButton.png -------------------------------------------------------------------------------- /inc/architectures.txt: -------------------------------------------------------------------------------- 1 | none;LINMULT;OSXMULT;WIN;RPI 2 | alsa-http;RPI 3 | alsa-gtk;LINMULT;OSC 4 | alsa-qt;LIN;OSC 5 | ca-qt;OSX;OSC 6 | csound;LINMULT;OSX 7 | dssi;LINMULT 8 | jack-console;LINMULT;OSC 9 | jack-gtk;LINMULT;OSC 10 | jack-qt;LIN;OSX;OSC 11 | ladspa;LINMULT 12 | matlabplot;LINMULT;OSXMULT;WIN 13 | max-msp;OSX;WIN 14 | netjack-http;RPI 15 | oscio-gtk;LIN 16 | oscio-qt;LIN;OSX 17 | oss-gtk;LINMULT 18 | plot;LINMULT;OSXMULT;WIN 19 | pure;LINMULT;OSXMULT;WIN;MARCH 20 | puredata;LINMULT;OSX;WIN;MARCH 21 | q;LINMULT;OSX;WIN;MARCH 22 | sndfile;LINMULT 23 | supercollider;LIN 24 | VST;WIN 25 | -------------------------------------------------------------------------------- /inc/architectures3.txt: -------------------------------------------------------------------------------- 1 | none;LIN;OSX;WIN;MARCH 2 | alsa-gtk;LIN;OSC 3 | alsa-qt;LIN;OSC 4 | ca-qt;OSX;OSC 5 | csound;LIN;OSX 6 | dssi;LIN 7 | jack-console;LIN;OSC 8 | jack-gtk;LIN;OSC 9 | jack-qt;LIN;OSX;OSC 10 | ladspa;LIN 11 | matlabplot;LIN;OSX;WIN;MARCH 12 | max-msp;OSX;WIN 13 | oscio-gtk;LIN 14 | oscio-qt;LIN;OSX 15 | oss-gtk;LIN 16 | plot;LIN;OSX;WIN;MARCH 17 | pure;LIN;OSX;WIN;MARCH 18 | puredata;LIN;OSX;WIN;MARCH 19 | q;LIN;OSX;WIN;MARCH 20 | sndfile;LIN 21 | supercollider;LIN 22 | -------------------------------------------------------------------------------- /inc/mess.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | jQuery UI Authors (http://jqueryui.com/about) 2 | 3 | This software consists of voluntary contributions made by many 4 | individuals. For exact contribution history, see the revision history 5 | and logs, available at http://github.com/jquery/jquery-ui 6 | 7 | Brandon Aaron 8 | Paul Bakaus (paulbakaus.com) 9 | David Bolter 10 | Rich Caloggero 11 | Chi Cheng (cloudream@gmail.com) 12 | Colin Clark (http://colin.atrc.utoronto.ca/) 13 | Michelle D'Souza 14 | Aaron Eisenberger (aaronchi@gmail.com) 15 | Ariel Flesler 16 | Bohdan Ganicky 17 | Scott González 18 | Marc Grabanski (m@marcgrabanski.com) 19 | Klaus Hartl (stilbuero.de) 20 | Scott Jehl 21 | Cody Lindley 22 | Eduardo Lundgren (eduardolundgren@gmail.com) 23 | Todd Parker 24 | John Resig 25 | Patty Toland 26 | Ca-Phun Ung (yelotofu.com) 27 | Keith Wood (kbwood@virginbroadband.com.au) 28 | Maggie Costello Wachs 29 | Richard D. Worth (rdworth.org) 30 | Jörn Zaefferer (bassistance.de) 31 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Accordion Demos 6 | 7 | 8 | 9 | 10 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/addClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/animate/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/dialog/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Dialog Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Demos 6 | 7 | 8 | 9 | 10 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/effect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/hide/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/position/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Position Demo 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/progressbar/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 19 | 20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 |
31 |

Default determinate progress bar.

32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/progressbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/removeClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/selectable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Selectable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/show/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Sortable Demos 6 | 7 | 8 | 9 | 10 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/switchClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tabs Demos 6 | 7 | 8 | 9 | 10 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/toggle/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/demos/toggleClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/js/jqueryui/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/themes/smoothness/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- 1 | /* Bosnian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Kenan Konjo. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['bs'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Juni', 10 | 'Juli','August','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['bs']); 23 | }); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- 1 | /* Inicialització en català per a l'extenció 'calendar' per jQuery. */ 2 | /* Writers: (joan.leon@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ca'] = { 5 | closeText: 'Tancar', 6 | prevText: '<Ant', 7 | nextText: 'Seg>', 8 | currentText: 'Avui', 9 | monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny', 10 | 'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'], 11 | monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun', 12 | 'Jul','Ago','Set','Oct','Nov','Des'], 13 | dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'], 14 | dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'], 15 | dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ca']); 23 | }); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js: -------------------------------------------------------------------------------- 1 | /* German initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Milian Wolff (mail@milianw.de). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['de'] = { 5 | closeText: 'schließen', 6 | prevText: '<zurück', 7 | nextText: 'Vor>', 8 | currentText: 'heute', 9 | monthNames: ['Januar','Februar','März','April','Mai','Juni', 10 | 'Juli','August','September','Oktober','November','Dezember'], 11 | monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dez'], 13 | dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], 14 | dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], 15 | dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], 16 | weekHeader: 'Wo', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['de']); 23 | }); 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js: -------------------------------------------------------------------------------- 1 | /* English/UK initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Stuart. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-GB'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-GB']); 23 | }); 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- 1 | /* Hebrew initialisation for the UI Datepicker extension. */ 2 | /* Written by Amir Hardon (ahardon at gmail dot com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['he'] = { 5 | closeText: 'סגור', 6 | prevText: '<הקודם', 7 | nextText: 'הבא>', 8 | currentText: 'היום', 9 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', 10 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], 11 | monthNamesShort: ['1','2','3','4','5','6', 12 | '7','8','9','10','11','12'], 13 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], 14 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 15 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['he']); 23 | }); 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js: -------------------------------------------------------------------------------- 1 | /* Croatian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Vjekoslav Nesek. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hr'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipanj', 10 | 'Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'], 11 | monthNamesShort: ['Sij','Velj','Ožu','Tra','Svi','Lip', 12 | 'Srp','Kol','Ruj','Lis','Stu','Pro'], 13 | dayNames: ['Nedjelja','Ponedjeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Tje', 17 | dateFormat: 'dd.mm.yy.', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hr']); 23 | }); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js: -------------------------------------------------------------------------------- 1 | /* Indonesian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Deden Fathurahman (dedenf@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['id'] = { 5 | closeText: 'Tutup', 6 | prevText: '<mundur', 7 | nextText: 'maju>', 8 | currentText: 'hari ini', 9 | monthNames: ['Januari','Februari','Maret','April','Mei','Juni', 10 | 'Juli','Agustus','September','Oktober','Nopember','Desember'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', 12 | 'Jul','Agus','Sep','Okt','Nop','Des'], 13 | dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'], 14 | dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'], 15 | dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'], 16 | weekHeader: 'Mg', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['id']); 23 | }); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- 1 | /* Japanese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Kentaro SATO (kentaro@ranvis.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ja'] = { 5 | closeText: '閉じる', 6 | prevText: '<前', 7 | nextText: '次>', 8 | currentText: '今日', 9 | monthNames: ['1月','2月','3月','4月','5月','6月', 10 | '7月','8月','9月','10月','11月','12月'], 11 | monthNamesShort: ['1月','2月','3月','4月','5月','6月', 12 | '7月','8月','9月','10月','11月','12月'], 13 | dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], 14 | dayNamesShort: ['日','月','火','水','木','金','土'], 15 | dayNamesMin: ['日','月','火','水','木','金','土'], 16 | weekHeader: '週', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ja']); 23 | }); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- 1 | /* Korean initialisation for the jQuery calendar extension. */ 2 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ko'] = { 5 | closeText: '닫기', 6 | prevText: '이전달', 7 | nextText: '다음달', 8 | currentText: '오늘', 9 | monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)', 10 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'], 11 | monthNamesShort: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)', 12 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'], 13 | dayNames: ['일','월','화','수','목','금','토'], 14 | dayNamesShort: ['일','월','화','수','목','금','토'], 15 | dayNamesMin: ['일','월','화','수','목','금','토'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: '년'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ko']); 23 | }); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr-SR'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Jun', 10 | 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Sed', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr-SR']); 23 | }); 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr'] = { 5 | closeText: 'Затвори', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Данас', 9 | monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', 10 | 'Јул','Август','Септембар','Октобар','Новембар','Децембар'], 11 | monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун', 12 | 'Јул','Авг','Сеп','Окт','Нов','Дец'], 13 | dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'], 14 | dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'], 15 | dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], 16 | weekHeader: 'Сед', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr']); 23 | }); 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js: -------------------------------------------------------------------------------- 1 | /* Tajiki (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Abdurahmon Saidov (saidovab@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['tj'] = { 5 | closeText: 'Идома', 6 | prevText: '<Қафо', 7 | nextText: 'Пеш>', 8 | currentText: 'Имрӯз', 9 | monthNames: ['Январ','Феврал','Март','Апрел','Май','Июн', 10 | 'Июл','Август','Сентябр','Октябр','Ноябр','Декабр'], 11 | monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', 12 | 'Июл','Авг','Сен','Окт','Ноя','Дек'], 13 | dayNames: ['якшанбе','душанбе','сешанбе','чоршанбе','панҷшанбе','ҷумъа','шанбе'], 14 | dayNamesShort: ['якш','душ','сеш','чор','пан','ҷум','шан'], 15 | dayNamesMin: ['Як','Дш','Сш','Чш','Пш','Ҷм','Шн'], 16 | weekHeader: 'Хф', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['tj']); 23 | }); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js: -------------------------------------------------------------------------------- 1 | /* Turkish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Izzet Emre Erkan (kara@karalamalar.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['tr'] = { 5 | closeText: 'kapat', 6 | prevText: '<geri', 7 | nextText: 'ileri>', 8 | currentText: 'bugün', 9 | monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran', 10 | 'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'], 11 | monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz', 12 | 'Tem','Ağu','Eyl','Eki','Kas','Ara'], 13 | dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'], 14 | dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 15 | dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 16 | weekHeader: 'Hf', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['tr']); 23 | }); -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Cloudream (cloudream@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-CN'] = { 5 | closeText: '关闭', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-CN']); 23 | }); 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by SCCY (samuelcychan@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-HK'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-HK']); 23 | }); 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-TW'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-TW']); 23 | }); 24 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/jquery.effects.fade.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fade 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Fade 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function( $, undefined ) { 14 | 15 | $.effects.fade = function(o) { 16 | return this.queue(function() { 17 | var elem = $(this), 18 | mode = $.effects.setMode(elem, o.options.mode || 'hide'); 19 | 20 | elem.animate({ opacity: mode }, { 21 | queue: false, 22 | duration: o.duration, 23 | easing: o.options.easing, 24 | complete: function() { 25 | (o.callback && o.callback.apply(this, arguments)); 26 | elem.dequeue(); 27 | } 28 | }); 29 | }); 30 | }; 31 | 32 | })(jQuery); 33 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/minified/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Blind 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Blind 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function(b){b.effects.blind=function(c){return this.queue(function(){var a=b(this),g=["position","top","bottom","left","right"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){f=="hide"&&a.hide();b.effects.restore(a, 14 | g);b.effects.removeWrapper(a);c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/minified/jquery.effects.fade.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fade 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Fade 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery); 14 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/ui/minified/jquery.effects.transfer.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Transfer 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Transfer 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function(e){e.effects.transfer=function(a){return this.queue(function(){var b=e(this),c=e(a.options.to),d=c.offset();c={top:d.top,left:d.left,height:c.innerHeight(),width:c.innerWidth()};d=b.offset();var f=e('
').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments); 14 | b.dequeue()})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /js/jqueryui/development-bundle/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.16 2 | -------------------------------------------------------------------------------- /logs/acces_logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/logs/acces_logs -------------------------------------------------------------------------------- /logs/error_logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/logs/error_logs -------------------------------------------------------------------------------- /logs/stats: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | 4 | grep -v robot $1 | \ 5 | sed -e 's/^\([^:]*\):..*/\1/' | \ 6 | sed -e 's/\([^-]*\)- - \[\(..*\)/\2 \1/' | \ 7 | sed -e 's/\([0-9][0-9]\)\/\([A-Z][a-z][a-z]\)\/\([0-9][0-9][0-9][0-9]\)/\3:\2:\1/' | \ 8 | sort -u 9 | 10 | -------------------------------------------------------------------------------- /php/env.php: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /php/erreur.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Standard Error Page 4 | 5 | 6 | 7 |

Sorry

8 |

Impossible to treat your request for the moment.

9 |

Please try later.

10 | 11 |

Error : __msg__

12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /scripts/clean_old_sessions: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | for n in tmp/* 4 | do 5 | res="" 6 | if [ -d $n ] 7 | then 8 | cd $n 9 | res=`find -name history.txt -amin +10` 10 | cd ../../ 11 | if [ "$res" = "./history.txt" ] 12 | then 13 | if [ "$n" != "./tmp" ] 14 | then 15 | rm -r $n 16 | fi 17 | fi 18 | fi 19 | done 20 | -------------------------------------------------------------------------------- /scripts/liste_enrobages: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo ""; 3 | ls Makefiles/$1 | cut -d \. -f 2 4 | echo "#"; 5 | -------------------------------------------------------------------------------- /scripts/liste_enrobages_exec: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | for m in exemples/exec/* 4 | do 5 | if [ -e "$m/$1" ] || [ -e "$m/$1.so" ] || [ -e "$m/$1-bin.tgz" ] 6 | then 7 | echo `basename $m` 8 | fi 9 | done 10 | echo "#"; -------------------------------------------------------------------------------- /scripts/liste_exemples: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | for n in catalog/"$1"/src/*.dsp 3 | do 4 | echo `basename ${n%.*}` 5 | done 6 | echo "#"; 7 | -------------------------------------------------------------------------------- /scripts/new_session: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if ( ! [ -d $1 ] ) then 3 | mkdir -m ugo+w $1 $1/uploads 4 | touch $1/history.txt 5 | ###`scripts/clean_old_sessions` 6 | fi 7 | -------------------------------------------------------------------------------- /scripts/qrize: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | qrencode -o qr.png $1 3 | -------------------------------------------------------------------------------- /scripts/remove_example: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm catalog/$1/description/$2.txt catalog/$1/capture/$2_compr.* 3 | deleteTime=$(date +%H-%M-%m%d%y) 4 | mv catalog/$1/uinfo/$2.txt catalog/$1/uinfo/deleted/$2.txt_DEL_$deleteTime 5 | mv catalog/$1/src/$2.dsp catalog/$1/src/deleted/$2.dsp_DEL_$deleteTime -------------------------------------------------------------------------------- /specLength: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/onlinecompiler/25f9324d7a30d94c0aa44caad9307d3135ecc34f/specLength -------------------------------------------------------------------------------- /tmp/readme: -------------------------------------------------------------------------------- 1 | Empty directory. Used for store compilation sessions 2 | -------------------------------------------------------------------------------- /who.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | --------------------------------------------------------------------------------