repo
string
commit
string
message
string
diff
string
stefanfoulis/django-multilingual
7aef737e5edaf9470fa6147a2e81f41cee1376ec
Sorry, forgot to add a file
diff --git a/multilingual/forms.py b/multilingual/forms.py new file mode 100644 index 0000000..fff6109 --- /dev/null +++ b/multilingual/forms.py @@ -0,0 +1,24 @@ +"""TODO: this will probably be removed because DM seems to work correctly without +manipulators. +""" +from django.forms.models import ModelForm +from djang...
stefanfoulis/django-multilingual
5bd042018e96fa72303e9703cc921f638feee272
Fixed two bugs: - form.manipulator.model becomes form._meta.model - added fourth, optional, parameter to Model __new__ method
diff --git a/multilingual/templatetags/multilingual_tags.py b/multilingual/templatetags/multilingual_tags.py index eb673da..2b11f45 100644 --- a/multilingual/templatetags/multilingual_tags.py +++ b/multilingual/templatetags/multilingual_tags.py @@ -1,73 +1,73 @@ from django import template from django import forms f...
stefanfoulis/django-multilingual
36be93103175460b6ccd7cc4c3b79ece943e2aba
Make created TranslationModelAdmin dynamic. Probably fixes a problem with previous commit.
diff --git a/multilingual/translation.py b/multilingual/translation.py index 514fe05..52be5a6 100644 --- a/multilingual/translation.py +++ b/multilingual/translation.py @@ -1,403 +1,403 @@ """ Support for models' internal Translation class. """ ## TO DO: this is messy and needs to be cleaned up from django.con...
stefanfoulis/django-multilingual
c13f8e02858496d56a1bb6e58ffcafebf6094ed9
Use admin site autodiscovery. Extracted admin code into admin.py. Show off new ModelAdmin translation code.
diff --git a/testproject/articles/admin.py b/testproject/articles/admin.py new file mode 100644 index 0000000..d256756 --- /dev/null +++ b/testproject/articles/admin.py @@ -0,0 +1,22 @@ +from django import forms +from django.contrib import admin +from multilingual import translation +from articles import models + +clas...
stefanfoulis/django-multilingual
9f59a63ae9a047ce19a270b770ef53aaa9feadf5
Changed the creation of the ModelAdmin class for tranlations. Now accepts a 'Translation' class in the ModelAdmin class.
diff --git a/multilingual/translation.py b/multilingual/translation.py index b03fc7c..514fe05 100644 --- a/multilingual/translation.py +++ b/multilingual/translation.py @@ -1,396 +1,403 @@ """ Support for models' internal Translation class. """ ## TO DO: this is messy and needs to be cleaned up from django.con...
stefanfoulis/django-multilingual
94f99c94e816833f91220c8de6ea9e9e0c42e47b
Factor out the dynamic generation of the translation ModelAdmin class.
diff --git a/multilingual/translation.py b/multilingual/translation.py index 9927c03..b03fc7c 100644 --- a/multilingual/translation.py +++ b/multilingual/translation.py @@ -1,392 +1,396 @@ """ Support for models' internal Translation class. """ ## TO DO: this is messy and needs to be cleaned up from django.con...
stefanfoulis/django-multilingual
a8bbdcf54c18c88f438822abef3a328ac973919f
Removed more compatibility code. This is the result of a quick scan through all modules.
diff --git a/multilingual/compat.py b/multilingual/compat.py deleted file mode 100644 index 4f11943..0000000 --- a/multilingual/compat.py +++ /dev/null @@ -1,13 +0,0 @@ -""" -Code that allows DM to be compatible with various Django versions. -""" - -# check whether Django is from the newforms-admin branch -IS_NEWFORMS_...
stefanfoulis/django-multilingual
a0fd010120505ea9b8171c1983c55a16cbe5b43a
Removed compatibility code from multilingual_flatpages.
diff --git a/multilingual/flatpages/models.py b/multilingual/flatpages/models.py index ed06d08..b28117c 100644 --- a/multilingual/flatpages/models.py +++ b/multilingual/flatpages/models.py @@ -1,74 +1,52 @@ from django.core import validators from django.db import models from django.contrib.sites.models import Site ...
stefanfoulis/django-multilingual
291174c591bfad223dc191da2fc2a659f7ed78b8
Removed warnings because of the 'maxlength' -> 'max_length' rename. This really breaks backwards compatibility!
diff --git a/multilingual/flatpages/models.py b/multilingual/flatpages/models.py index 4d16b97..ed06d08 100644 --- a/multilingual/flatpages/models.py +++ b/multilingual/flatpages/models.py @@ -1,74 +1,74 @@ from django.core import validators from django.db import models from django.contrib.sites.models import Site ...
stefanfoulis/django-multilingual
4b86f8a0549bf1960a3bbd5f9542f86111448419
Added initial_data fixture and fixed tests.
diff --git a/testproject/articles/fixtures/initial_data.xml b/testproject/articles/fixtures/initial_data.xml new file mode 100644 index 0000000..830569a --- /dev/null +++ b/testproject/articles/fixtures/initial_data.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<django-objects version="1.0"> + <obje...
stefanfoulis/django-multilingual
401f2cac4718cce7bddd24d59a22564c8646852c
Fixed a bug in DM: the library assumed a model's primary key would be always named 'id'. Fixes #37.
diff --git a/multilingual/compat/query_pre_qsrf.py b/multilingual/compat/query_pre_qsrf.py index b91c5cf..8865e66 100644 --- a/multilingual/compat/query_pre_qsrf.py +++ b/multilingual/compat/query_pre_qsrf.py @@ -1,207 +1,207 @@ """ Django-multilingual: a QuerySet subclass for models with translatable fields. Als...
stefanfoulis/django-multilingual
017d4a6fbc04591887ad062c993421b3b6353bd3
Added fixture from issue 19. Ordered translation entities first.
diff --git a/testproject/articles/fixtures/initial_data.xml b/testproject/articles/fixtures/initial_data.xml new file mode 100644 index 0000000..3bf8ff8 --- /dev/null +++ b/testproject/articles/fixtures/initial_data.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<django-objects version="1.0"> + <objec...
stefanfoulis/django-multilingual
1c00fbea9cfe8dfc0e985f1c1188a3b3991c6954
Changed LANGUAGE_CODE from 'en-us' to 'en'. Added flatpages to the test set-up.
diff --git a/testproject/settings.py b/testproject/settings.py index e8df4b8..2a162dd 100644 --- a/testproject/settings.py +++ b/testproject/settings.py @@ -1,107 +1,109 @@ # Django settings for testproject project. DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( # ('Your Name', 'your_email@domain.com'), )...
stefanfoulis/django-multilingual
53b5050d82eaa482642e4c3215f0da89cfed4709
Added multilingual flatpages implementation.
diff --git a/multilingual/flatpages/__init__.py b/multilingual/flatpages/__init__.py new file mode 100644 index 0000000..e39e056 --- /dev/null +++ b/multilingual/flatpages/__init__.py @@ -0,0 +1,4 @@ +from multilingual.compat import IS_NEWFORMS_ADMIN + +if IS_NEWFORMS_ADMIN: + import multilingual.flatpages.admin dif...
stefanfoulis/django-multilingual
9fa4a3a58deb9042e68cf5a47e40d6bbf536bf53
Added Meta class and db_table to Category. Added tests for db_table.
diff --git a/testproject/articles/models.py b/testproject/articles/models.py index 64845d4..c2f1ba4 100644 --- a/testproject/articles/models.py +++ b/testproject/articles/models.py @@ -1,306 +1,316 @@ """ Test models for the multilingual library. # Note: the to_str() calls in all the tests are here only to make it...
stefanfoulis/django-multilingual
7471e5f9fd26f864440f983bd4dfbb9482054813
Fixed db_table bug introduced in previous change.
diff --git a/multilingual/translation.py b/multilingual/translation.py index 99a0ec0..e7255b1 100644 --- a/multilingual/translation.py +++ b/multilingual/translation.py @@ -1,386 +1,387 @@ """ Support for models' internal Translation class. """ ## TO DO: this is messy and needs to be cleaned up from django.db ...
stefanfoulis/django-multilingual
d103754cd34324bc7c9c802babc921e5d8b4c1c3
Use inner Translation.Meta class if present.
diff --git a/multilingual/translation.py b/multilingual/translation.py index e4803c6..99a0ec0 100644 --- a/multilingual/translation.py +++ b/multilingual/translation.py @@ -1,379 +1,386 @@ """ Support for models' internal Translation class. """ ## TO DO: this is messy and needs to be cleaned up from django.db ...
stefanfoulis/django-multilingual
26bd0564faeb93a4e43cc60267d5a22a2249e1c2
Ignore non-existent translation row when replacing. Fixes issue 39.
diff --git a/multilingual/__init__.py b/multilingual/__init__.py new file mode 100644 index 0000000..ed6a5b6 --- /dev/null +++ b/multilingual/__init__.py @@ -0,0 +1,9 @@ +""" +Django-multilingual: multilingual model support for Django. +""" + +from multilingual import models +from multilingual.exceptions import Transla...
sgharms/latintools
2397f15e5d58f7e8ff349e767576ae96dd7c4bc4
Added syllabation routine command.
diff --git a/Textmate_tools/Latin Student.tmbundle/Commands/AELigatureize.tmCommand b/Textmate_tools/Latin Student (HTML).tmbundle/Commands/AELigatureize.tmCommand similarity index 100% rename from Textmate_tools/Latin Student.tmbundle/Commands/AELigatureize.tmCommand rename to Textmate_tools/Latin Student (HTML).tmbun...
sgharms/latintools
19392a1cb116705d37d44e342e2117b4b30e3e8c
Fixed bug around the I+macron glyph. It is entered in LaTeX as \={I} not \={\I}.
diff --git a/Textmate_tools/Latin Student.tmbundle/Commands/Latex Macrons To Character Entities.tmCommand b/Textmate_tools/Latin Student.tmbundle/Commands/Latex Macrons To Character Entities.tmCommand index 9a057a9..6d23b1a 100644 --- a/Textmate_tools/Latin Student.tmbundle/Commands/Latex Macrons To Character Entities....
sgharms/latintools
c28fb526bd91e39dc1656abd6f35fd150cf45edb
Modified to ligaturize AE and ae on execution execution of Lines to Latlines
diff --git a/Textmate_tools/Latin Student.tmbundle/Commands/Lines To Latlines.tmCommand b/Textmate_tools/Latin Student.tmbundle/Commands/Lines To Latlines.tmCommand index 52d5c67..dcc6f3b 100644 --- a/Textmate_tools/Latin Student.tmbundle/Commands/Lines To Latlines.tmCommand +++ b/Textmate_tools/Latin Student.tmbundle...
sgharms/latintools
5c2a118ddf9981469dfb74f67637e0c2cbfc02eb
Added versenumerate for prefixing every number divisible by 5 with a versu number where the first line is the numerical base from which to start
diff --git a/Textmate_tools/Latin Student.tmbundle/Commands/AELigatureize.tmCommand b/Textmate_tools/Latin Student.tmbundle/Commands/AELigatureize.tmCommand index 8a3ad37..8a4da0e 100644 --- a/Textmate_tools/Latin Student.tmbundle/Commands/AELigatureize.tmCommand +++ b/Textmate_tools/Latin Student.tmbundle/Commands/AE...
sgharms/latintools
ef35655b926e8ccb0c054699e645c24988bf90d1
Wrapped latlines in parboxes to fix page breaks
diff --git a/LaTeX_tools/latinpoetry.sty b/LaTeX_tools/latinpoetry.sty index a8ebfcd..cd8c1a0 100644 --- a/LaTeX_tools/latinpoetry.sty +++ b/LaTeX_tools/latinpoetry.sty @@ -1,81 +1,84 @@ \newcommand{\trans}[1]{ \begin{normalsize} \begin{sc} {{#1}} \end{sc} \end{normalsize} } \newcommand{\transcorr}[1...
sgharms/latintools
d1b7e0a72dc4855b9758102ea87d84e5ed0d3d39
Added AELigaturize. Through use of ^q you can look at currentWord and replace ae with the LaTeX code for {\AE} or {\ae} ligatures.
diff --git a/Textmate_tools/Latin Student.tmbundle/Commands/AELigatureize.tmCommand b/Textmate_tools/Latin Student.tmbundle/Commands/AELigatureize.tmCommand new file mode 100644 index 0000000..8a3ad37 --- /dev/null +++ b/Textmate_tools/Latin Student.tmbundle/Commands/AELigatureize.tmCommand @@ -0,0 +1,28 @@ +<?xml ver...
sgharms/latintools
ad8c4c2c8fd45ece12359749d8e777da129ef684
fixed regression where \newline needed to be \\newline
diff --git a/Textmate_tools/Latin Student.tmbundle/Commands/Lines To Latlines.tmCommand b/Textmate_tools/Latin Student.tmbundle/Commands/Lines To Latlines.tmCommand index 09e5ffb..310602f 100644 --- a/Textmate_tools/Latin Student.tmbundle/Commands/Lines To Latlines.tmCommand +++ b/Textmate_tools/Latin Student.tmbundle...
sgharms/latintools
879b6e4080e0942ba21a4e6bab88b74b45f623a5
added the shell tool latex2latin
diff --git a/Shell_tools/MacronConversions.rb b/Shell_tools/MacronConversions.rb new file mode 100644 index 0000000..fd930fc --- /dev/null +++ b/Shell_tools/MacronConversions.rb @@ -0,0 +1,227 @@ +# == Synopsis +# +# MacronConversions: module providing classes to convert macron (dis-)enabled strings into the opposite....
sgharms/latintools
090768a86ef700bfffc98a164943dc97b643d452
added url to blip.tv movie in README
diff --git a/README b/README index 991821a..bdb6b02 100644 --- a/README +++ b/README @@ -1,42 +1,45 @@ This is a project for tools that help you write Latin more easily. For a summary of why this exists, check out the wiki page: http://wiki.github.com/sgharms/latintools +Or, watch a video of how this can be used...
sgharms/latintools
544cf5c2e66d3d5a2e91afc942ef3dad72a36019
fixed regex
diff --git a/Shell_tools/placeholder b/Shell_tools/placeholder new file mode 100644 index 0000000..e69de29 diff --git a/Textmate_tools/Latin Student.tmbundle/Commands/Dactylizer.tmCommand b/Textmate_tools/Latin Student.tmbundle/Commands/Dactylizer.tmCommand index 03c944e..e3f0242 100644 --- a/Textmate_tools/Latin Stude...
sgharms/latintools
57dcf9ac7651f2d36d25acf66d9f621bf0b93cf4
moved merged-in latinpoetry project. Ending that project as it fits in here in a larger sense.
diff --git a/TEMPLATE.pdf b/LaTeX_tools/TEMPLATE.pdf similarity index 100% rename from TEMPLATE.pdf rename to LaTeX_tools/TEMPLATE.pdf diff --git a/TEMPLATE.tex b/LaTeX_tools/TEMPLATE.tex similarity index 100% rename from TEMPLATE.tex rename to LaTeX_tools/TEMPLATE.tex diff --git a/aeneid_example.pdf b/LaTeX_tools/aene...
sgharms/latintools
007f3c12d53f204520a9bf1a1d9a50b7a524834b
added url to blip.tv movie in README
diff --git a/README b/README index 991821a..bdb6b02 100644 --- a/README +++ b/README @@ -1,42 +1,45 @@ This is a project for tools that help you write Latin more easily. For a summary of why this exists, check out the wiki page: http://wiki.github.com/sgharms/latintools +Or, watch a video of how this can be used...
sgharms/latintools
240c855eade405a885e91e9e7e41767ef2ade662
added placeholder for shell tools
diff --git a/Shell_tools/placeholder b/Shell_tools/placeholder new file mode 100644 index 0000000..e69de29
sgharms/latintools
5bf07934956489bf5a4d41834b027c6e1d7db8a4
fixed regex
diff --git a/Textmate_tools/Latin Student.tmbundle/Commands/Dactylizer.tmCommand b/Textmate_tools/Latin Student.tmbundle/Commands/Dactylizer.tmCommand index 03c944e..e3f0242 100644 --- a/Textmate_tools/Latin Student.tmbundle/Commands/Dactylizer.tmCommand +++ b/Textmate_tools/Latin Student.tmbundle/Commands/Dactylizer....
sgharms/latintools
730f807229be3fe46aa52ffbaf358056058914f5
got rid of legacy placeholder
diff --git a/LaTeX_tools/placeholder b/LaTeX_tools/placeholder deleted file mode 100644 index e69de29..0000000 diff --git a/README b/README index b3c66fe..991821a 100644 --- a/README +++ b/README @@ -1,39 +1,42 @@ This is a project for tools that help you write Latin more easily. +For a summary of why this exists, c...
sgharms/latintools
c2db9b412703ab02a358f9cd81d1c1d9cd16a8b1
corrected macronizing regex for Textmate package
diff --git a/README b/README index 6f189f7..53a724b 100644 --- a/README +++ b/README @@ -1,21 +1,21 @@ This is a project for tools that help you write Latin more easily. Tools fall into these varieties: + LaTeX_tools - LaTeX styles that help with the annotation of verse + Textmate_tools - Latin ...
sgharms/latintools
d92cb7a3bc2f690716529e4135b9730340070b9e
added outlinestyle and enumstyle, ways to toggle between styles
diff --git a/latinpoetry.sty b/latinpoetry.sty index d6f57a4..03e5079 100644 --- a/latinpoetry.sty +++ b/latinpoetry.sty @@ -1,67 +1,81 @@ \newcommand{\trans}[1]{ \begin{normalsize} \begin{sc} {{#1}} \end{sc} \end{normalsize} } \newcommand{\transcorr}[1]{ \vskip 5mm \hskip 10pt % We make thi...
sgharms/latintools
3644192478467d1ed5d75c664f26bb4c59023541
cleaned some cruft from the bundle
diff --git a/Textmate_tools/Latin Student.tmbundle/Macros/Latin Move To End Of Line.tmMacro b/Textmate_tools/Latin Student.tmbundle/Macros/Latin Move To End Of Line.tmMacro deleted file mode 100644 index c78e617..0000000 --- a/Textmate_tools/Latin Student.tmbundle/Macros/Latin Move To End Of Line.tmMacro +++ /dev/null...
sgharms/latintools
40dd88609ca2537c05563b8984cdb9de6940eda3
Added notes for textmate section
diff --git a/README b/README index 104d5e8..6f189f7 100644 --- a/README +++ b/README @@ -1,7 +1,21 @@ This is a project for tools that help you write Latin more easily. Tools fall into these varieties: -1. Tools that change LaTeX characters into Unicode characters with macrons -2. Textmate modes that allow you ...
sgharms/latintools
9c30f3b099a6ca25fb29660fe28348c931e6c116
added the textmate bundle
diff --git a/Textmate_tools/Latin Student.tmbundle/Commands/Close selection with pipes.tmCommand b/Textmate_tools/Latin Student.tmbundle/Commands/Close selection with pipes.tmCommand new file mode 100644 index 0000000..430eb09 --- /dev/null +++ b/Textmate_tools/Latin Student.tmbundle/Commands/Close selection with pipes...
sgharms/latintools
30539ad2b40063f73ee083d429da99fd269d75bd
added primary subdirectories and placeholders
diff --git a/LaTeX_tools/placeholder b/LaTeX_tools/placeholder new file mode 100644 index 0000000..e69de29 diff --git a/Textmate_tools/placeholder b/Textmate_tools/placeholder new file mode 100644 index 0000000..e69de29
sgharms/latintools
de3248dc917a09888f5f1157b1137ef2767bc64c
Created README
diff --git a/README b/README new file mode 100644 index 0000000..104d5e8 --- /dev/null +++ b/README @@ -0,0 +1,7 @@ +This is a project for tools that help you write Latin more easily. + +Tools fall into these varieties: + +1. Tools that change LaTeX characters into Unicode characters with macrons +2. Textmate modes t...
sgharms/latintools
dc49443f7dfa08160c160e647fd3e0cde1688f9e
added gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7073775 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.aux +*.log +*.maf +*.mtc +*.mtc1
sgharms/latintools
459c5bf8bd794ab32ace65ceaeb422471e74c840
changed the text file content to be rich
diff --git a/aeneid_example.aux b/aeneid_example.aux new file mode 100644 index 0000000..546fbd8 --- /dev/null +++ b/aeneid_example.aux @@ -0,0 +1,2 @@ +\relax +\global\mtcsecondpartfalse diff --git a/aeneid_example.log b/aeneid_example.log new file mode 100644 index 0000000..1ce4913 --- /dev/null +++ b/aeneid_example...
sgharms/latintools
d9e30e1f9f4561ab2b39d441756eaac38a4a1310
added template output and examples
diff --git a/TEMPLATE.pdf b/TEMPLATE.pdf new file mode 100644 index 0000000..f19febf Binary files /dev/null and b/TEMPLATE.pdf differ diff --git a/TEMPLATE.tex b/TEMPLATE.tex new file mode 100644 index 0000000..c5a6af7 --- /dev/null +++ b/TEMPLATE.tex @@ -0,0 +1,56 @@ +% +% $id$ +% +% Created by Steven Harms on 2009-...
sgharms/latintools
f15094954f78e29c86644d0ea3d2587ab2c00f41
added the \latline command
diff --git a/latinpoetry.sty b/latinpoetry.sty index 9b7caa4..d6f57a4 100644 --- a/latinpoetry.sty +++ b/latinpoetry.sty @@ -1,47 +1,67 @@ \newcommand{\trans}[1]{ \begin{normalsize} \begin{sc} {{#1}} \end{sc} \end{normalsize} } +\newcommand{\transcorr}[1]{ + \vskip 5mm + \hskip 10pt + % We make thi...
sgharms/latintools
5515df5635c604aeb14acbcbb0f7e2ee24d020d2
Added a placeholder example for an AEneid example.
diff --git a/aeneid_example.tex b/aeneid_example.tex new file mode 100644 index 0000000..1333ed7 --- /dev/null +++ b/aeneid_example.tex @@ -0,0 +1 @@ +TODO
sgharms/latintools
d86613995d643e903c2230408f0459619f28a705
added basic README
diff --git a/README b/README new file mode 100644 index 0000000..6ca4e4e --- /dev/null +++ b/README @@ -0,0 +1,24 @@ +Introduction: + +This is a simple set of LateX commands which help make Latin analysis prettier. + +Example: + +\latblock + { + \={\macron A}rm\-a v\-ir\=umqu\-e c\-an{\={\macron o}}, $||$ + Tr\={...
sgharms/latintools
4891318e6c051922cd7f63ac4037c63a96e56eaa
initial import of some tools i use to make notes
diff --git a/latinpoetry.sty b/latinpoetry.sty new file mode 100644 index 0000000..9b7caa4 --- /dev/null +++ b/latinpoetry.sty @@ -0,0 +1,47 @@ +\newcommand{\trans}[1]{ + \begin{normalsize} + \begin{sc} + {{#1}} + \end{sc} + \end{normalsize} +} + +\newcommand{\latblock}[2]{ + \begin{verse} + \begin{metrica} + {#1...
microft/junk
0487effdb64ebaa373c9695079834d53a7c37527
added my first file to my first github repository
diff --git a/README b/README new file mode 100644 index 0000000..e69de29
daveaugustine/monomeapps
d979686e5c8b6fbd4fb55220750eb11ad7d456b7
more TODO. sigh.
diff --git a/ripple/TODO b/ripple/TODO index 005bed4..aa965c9 100644 --- a/ripple/TODO +++ b/ripple/TODO @@ -1,6 +1,7 @@ * Origin button press duration = speed of ripple * Stone button press duration = duration of note length * Proper scale setup * Tilt control speed of ripple * Make ripple non square -* Multi ori...
daveaugustine/monomeapps
baf83ba05c6241107e12e07ff1ce1d9923461f5d
Version 0.1 is complete.
diff --git a/ripple/README b/ripple/README index 3c62644..c838008 100644 --- a/ripple/README +++ b/ripple/README @@ -1 +1,12 @@ -A Ripple sequencer for the monome written in Ruby using the monomer library \ No newline at end of file +Ripple v.1 +========== + +A Ripple sequencer for the monome [64] written in Ruby using...
daveaugustine/monomeapps
a3884cbc584e3e67a8a660476935db8a64d04140
first working version.
diff --git a/ripple/ripple.rb b/ripple/ripple.rb index 83e49b6..76c6af8 100755 --- a/ripple/ripple.rb +++ b/ripple/ripple.rb @@ -1,98 +1,112 @@ #!/usr/bin/env jruby -wKU require File.dirname(__FILE__) + '/../../monomer/lib/monomer' class Ripple < Monomer::Listener before_start do @midi = Monomer::Mid...
daveaugustine/monomeapps
daf0a9d281fd01f6c8948ade06868c85b827e8a1
refactoring. implementing single ripple source for now. ability to turn on / off origin
diff --git a/ripple/ripple.rb b/ripple/ripple.rb index ec5f0ac..83e49b6 100755 --- a/ripple/ripple.rb +++ b/ripple/ripple.rb @@ -1,81 +1,98 @@ #!/usr/bin/env jruby -wKU -require File.dirname(__FILE__) + '/../../lib/monomer' +require File.dirname(__FILE__) + '/../../monomer/lib/monomer' class Ripple < Monomer::Lis...
daveaugustine/monomeapps
4911671bd8aea3e366c309cc3b9c5d3d5a7bea45
added ripple
diff --git a/ripple/ripple.rb b/ripple/ripple.rb new file mode 100755 index 0000000..ec5f0ac --- /dev/null +++ b/ripple/ripple.rb @@ -0,0 +1,81 @@ +#!/usr/bin/env jruby -wKU + +require File.dirname(__FILE__) + '/../../lib/monomer' + +class Ripple < Monomer::Listener + + before_start do + @midi = Monomer::MidiOut....
daveaugustine/monomeapps
aecf040f48a16b2a7836ed3334132e7295d70368
second
diff --git a/README b/README new file mode 100644 index 0000000..e69de29
ctorecords/Archive-Any-Plugin-Rar
bbb3f136d163417a1ca94c7edd88098591292036
Cpan commit preparing \#2
diff --git a/README b/README index e163e42..c608425 100644 --- a/README +++ b/README @@ -1,26 +1,26 @@ NAME Archive::Any::Plugin::Rar - Archive::Any wrapper around Archive::Rar SYNOPSIS Do not use this module directly. Instead, use Archive::Any. SEE ALSO Archive::Any, Archive::Rar AUTHOR D...
ctorecords/Archive-Any-Plugin-Rar
73a960fe3d2ef911512bcd7e1d5a8b2919282b0d
Cpan commit preparing
diff --git a/MANIFEST b/MANIFEST index 32090de..76b3e7b 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,26 +1,29 @@ .gitignore Changes ignore.txt inc/Module/AutoInstall.pm inc/Module/Install.pm inc/Module/Install/AutoInstall.pm inc/Module/Install/Base.pm inc/Module/Install/Can.pm inc/Module/Install/Fetch.pm inc/Mo...
ctorecords/Archive-Any-Plugin-Rar
34103e14eb384b84a5dba261f2e34f25c37c9322
Fix from d_ion@mail.ru
diff --git a/Changes b/Changes index 86506ca..42cfdcf 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Archive-Any-Plugin-Rar +0.02 Fix from ksuri@cpan.org, d_ion@mail.ru + 10x :) + 0.01 Date/time First version, released on an unsuspecting world. diff --git a/META.yml ...
ctorecords/Archive-Any-Plugin-Rar
677460978dcddb6f72f93a88d68bba0ceca916de
added 'application/x-rar-compressed' to can_handle()
diff --git a/lib/Archive/Any/Plugin/Rar.pm b/lib/Archive/Any/Plugin/Rar.pm index 1a20d6f..f60c710 100644 --- a/lib/Archive/Any/Plugin/Rar.pm +++ b/lib/Archive/Any/Plugin/Rar.pm @@ -1,72 +1,73 @@ package Archive::Any::Plugin::Rar; use warnings; use strict; use base 'Archive::Any::Plugin'; use Archive::Rar; ...
ctorecords/Archive-Any-Plugin-Rar
0486f9e6fb2e9696a7cfac590017a9b5dc69355d
Bugfix
diff --git a/META.yml b/META.yml index c0e9918..2365c24 100644 --- a/META.yml +++ b/META.yml @@ -1,26 +1,27 @@ --- abstract: 'Archive::Any wrapper around Archive::Rar' author: - 'Dmitriy V. Simonov <dsimonov@gmail.com>' build_requires: ExtUtils::MakeMaker: 6.42 Test::More: 0 + lib::abs: 0 configure_requi...
ctorecords/Archive-Any-Plugin-Rar
b4d45fe3b24a0ab43a2d2e7beb3dd7a4b5f6b0b0
Bugfix
diff --git a/MANIFEST b/MANIFEST index bf438f0..32090de 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,23 +1,26 @@ +.gitignore Changes ignore.txt inc/Module/AutoInstall.pm inc/Module/Install.pm inc/Module/Install/AutoInstall.pm inc/Module/Install/Base.pm inc/Module/Install/Can.pm inc/Module/Install/Fetch.pm inc/Mo...
ctorecords/Archive-Any-Plugin-Rar
aac4286fbe0b281d64be8eb78d3c40a543029a5b
Bugfix
diff --git a/makeall.sh b/makeall.sh new file mode 100755 index 0000000..057b609 --- /dev/null +++ b/makeall.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +MODULE=`perl -ne 'print $1 if m{all_from.+?([\w/.]+)}' Makefile.PL`; +perl=perl +$perl -v + +rm -rf MANIFEST.bak Makefile.old && \ +pod2text $MODULE > README && \ +$pe...
pec1985/Flash-Cards-app
e5c5c2fb0b947e0434c6c6e08beb5e779856cfc9
Apache License
diff --git a/README b/README index e69de29..84f573f 100644 --- a/README +++ b/README @@ -0,0 +1,13 @@ + Copyright 2011 Pedro Enrique + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + ...
pec1985/Flash-Cards-app
a68ee8995edbca2416ca50da0cab6646b55b1372
Fixed overall buttons on android
diff --git a/Resources/a_addchapters.js b/Resources/a_addchapters.js index a8a01d1..fb36ee1 100644 --- a/Resources/a_addchapters.js +++ b/Resources/a_addchapters.js @@ -1,110 +1,110 @@ var addChapters = function(subjectId){ var db = Titanium.Database.install('flashcards.sqlite', 'flash1'); var subjectName = db.exe...
pec1985/Flash-Cards-app
f2e5d3d9b13a2852c49788fda6ff4c9aba1c0a45
First public release
diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..c07ac1b Binary files /dev/null and b/.DS_Store differ diff --git a/Resources/.DS_Store b/Resources/.DS_Store new file mode 100644 index 0000000..fc51456 Binary files /dev/null and b/Resources/.DS_Store differ diff --git a/Resources/KS_nav_ui.png b/R...
lericson/eko
10be576bea69f847badffbe3ff383f1f40115732
Don't use property.setter for py25 compat.
diff --git a/Eko/EkoAppDelegate.py b/Eko/EkoAppDelegate.py index bf6a781..17dc66b 100644 --- a/Eko/EkoAppDelegate.py +++ b/Eko/EkoAppDelegate.py @@ -1,182 +1,182 @@ """THE APP DELEGATE :O""" from __future__ import with_statement import os import datetime import logging from objc import IBOutlet, IBAction, s...
lericson/eko
85adba9f23ecddefed2a62c724dca15a6412d6b1
Remove debug line.
diff --git a/Eko/EkoAppDelegate.py b/Eko/EkoAppDelegate.py index 194b11d..bf6a781 100644 --- a/Eko/EkoAppDelegate.py +++ b/Eko/EkoAppDelegate.py @@ -1,183 +1,182 @@ """THE APP DELEGATE :O""" from __future__ import with_statement import os import datetime import logging from objc import IBOutlet, IBAction, s...
lericson/eko
6b196254bf096aa160eab7db684839b827e828b0
Hold request_items lock while reloadData runs (could be mutating.)
diff --git a/Eko/EkoAppDelegate.py b/Eko/EkoAppDelegate.py index a7aaaea..194b11d 100644 --- a/Eko/EkoAppDelegate.py +++ b/Eko/EkoAppDelegate.py @@ -1,183 +1,183 @@ """THE APP DELEGATE :O""" from __future__ import with_statement import os import datetime import logging from objc import IBOutlet, IBAction, s...
lericson/eko
5e505e327c8fef6d94f49d96bc7559d34304a8d1
Import with statement for py25
diff --git a/Eko/EkoAppDelegate.py b/Eko/EkoAppDelegate.py index 661328c..a7aaaea 100644 --- a/Eko/EkoAppDelegate.py +++ b/Eko/EkoAppDelegate.py @@ -1,181 +1,183 @@ """THE APP DELEGATE :O""" +from __future__ import with_statement + import os import datetime import logging from objc import IBOutlet, IBAction, s...
lericson/eko
7d4e1000f24b8d32f5ac08fbd278e23792fc1f5b
Don't wait until [NSTableView reloadData] is done.
diff --git a/Eko/EkoAppDelegate.py b/Eko/EkoAppDelegate.py index 76a464d..661328c 100644 --- a/Eko/EkoAppDelegate.py +++ b/Eko/EkoAppDelegate.py @@ -1,181 +1,181 @@ """THE APP DELEGATE :O""" import os import datetime import logging from objc import IBOutlet, IBAction, selector, object_lock from Foundation imp...
lericson/eko
5c5116150c111a402f0fcb533d5545fdeb1764c1
Don't check [NSApp isRunning] in client thread.
diff --git a/Eko/EkoAppDelegate.py b/Eko/EkoAppDelegate.py index 6f2b130..76a464d 100644 --- a/Eko/EkoAppDelegate.py +++ b/Eko/EkoAppDelegate.py @@ -1,181 +1,181 @@ """THE APP DELEGATE :O""" import os import datetime import logging from objc import IBOutlet, IBAction, selector, object_lock from Foundation imp...
lericson/eko
b9be5897f9ddf3e31cfbb56c6e231e48541d00de
Ignore and remove .mode1v3 and .pbxuser.
diff --git a/.gitignore b/.gitignore index ebeb1c6..c731bf7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ *.pyc *.pyo .DS_Store /Eko/build +/Eko/Eko.xcodeproj/*.mode1v3 +/Eko/Eko.xcodeproj/*.pbxuser diff --git a/Eko/Eko.xcodeproj/jnordberg.mode1v3 b/Eko/Eko.xcodeproj/jnordberg.mode1v3 deleted file mode 1...
lericson/eko
a323f7cb9617a0e510bc2e4611a29bbe819163d7
Add OS X client.
diff --git a/.gitignore b/.gitignore index 66b6e4c..ebeb1c6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.pyc *.pyo .DS_Store +/Eko/build diff --git a/Eko/Eko.xcodeproj/jnordberg.mode1v3 b/Eko/Eko.xcodeproj/jnordberg.mode1v3 new file mode 100644 index 0000000..824cc84 --- /dev/null +++ b/Eko/Eko.xcodepr...
lericson/eko
dbeb966efd6d3091dedad88a16f3afcf47b11dea
Split out request access log emission.
diff --git a/eko.py b/eko.py index 937f483..055a981 100644 --- a/eko.py +++ b/eko.py @@ -1,152 +1,156 @@ #!/usr/bin/env python import time import datetime import logging import urllib2 import urlparse import optparse try: import json except ImportError: import simplejson as json __version__ = ...
lericson/eko
3529a2ce97ee42a3abab4a0bc6a2a092fd074fda
Flexibilize imports of zip packages.
diff --git a/gae/runcgi.py b/gae/runcgi.py index 33f5203..a48317b 100644 --- a/gae/runcgi.py +++ b/gae/runcgi.py @@ -1,14 +1,17 @@ import sys import os from glob import glob zip_packs = glob(os.path.join(os.path.dirname(__file__), "lib", "*.zip")) sys.path[:] = zip_packs + sys.path -import werkzeug, jinja2, simple...
lericson/eko
2954bd58223a5ce8d54188ff11229e8fca12793f
Rename Google App Engine package to gaeko.
diff --git a/gae/eko/__init__.py b/gae/gaeko/__init__.py similarity index 100% rename from gae/eko/__init__.py rename to gae/gaeko/__init__.py diff --git a/gae/eko/app.py b/gae/gaeko/app.py similarity index 94% rename from gae/eko/app.py rename to gae/gaeko/app.py index 96e0341..b6d034d 100644 --- a/gae/eko/app.py +++ ...
lericson/eko
5a6c6fc5a4b30b65d0a5d1776693f19bda1a4228
Added ideas.
diff --git a/ideas.rst b/ideas.rst new file mode 100644 index 0000000..68d8c32 --- /dev/null +++ b/ideas.rst @@ -0,0 +1,12 @@ +Request Replay +============== + +Oftentimes in development, one finds oneself in a situation where it'd +convenient to simply replay a request. + +What I'm thinking is some way of doing this f...
lericson/eko
881feca8361efcca12821053f00a1c722fa088be
Change timeout in client to six seconds.
diff --git a/eko-client.py b/eko-client.py index 61e660f..937f483 100644 --- a/eko-client.py +++ b/eko-client.py @@ -1,152 +1,152 @@ #!/usr/bin/env python import time import datetime import logging import urllib2 import urlparse import optparse try: import json except ImportError: import simplejs...
lericson/eko
70b58fd458b4d2f8fa89bdda2eca3a7655b6d3fe
Only read entity body once.
diff --git a/eko/app.py b/eko/app.py index fb2ac34..96e0341 100644 --- a/eko/app.py +++ b/eko/app.py @@ -1,82 +1,83 @@ import logging import datetime from werkzeug import Request, Response from werkzeug.exceptions import HTTPException, BadRequest from eko.db import ClientInfo, StoredRequest -from eko.utils imp...
lericson/eko
c23b8732a22d6ccd9345806408bf67f1289d18ad
Move responsibilities to StoreRequest.
diff --git a/eko/db.py b/eko/db.py index 6a39e8e..2ca9c77 100644 --- a/eko/db.py +++ b/eko/db.py @@ -1,66 +1,77 @@ import time from google.appengine.ext import db from google.appengine.api import memcache import logging -import simplejson +import simplejson as json # TODO logger = logging.getLogger("eko.db") ...
lericson/eko
f195a350f6cb72955077f4049528b53104c0f3c8
Validate client info on pull.
diff --git a/eko/app.py b/eko/app.py index a2b3c2c..fb2ac34 100644 --- a/eko/app.py +++ b/eko/app.py @@ -1,76 +1,82 @@ -import hashlib import logging import datetime from werkzeug import Request, Response -from werkzeug.utils import cached_property +from werkzeug.exceptions import HTTPException, BadRequest from...
lericson/eko
14b8b114c06e83c6815093ccf11516ca38893019
Store the correct current path as base path.
diff --git a/eko/app.py b/eko/app.py index 59dcbdf..a2b3c2c 100644 --- a/eko/app.py +++ b/eko/app.py @@ -1,76 +1,76 @@ import hashlib import logging import datetime from werkzeug import Request, Response from werkzeug.utils import cached_property from eko.db import ClientInfo, StoredRequest from eko.utils im...
lericson/eko
5430f44283971e0145fbdcce36a7bf6568d39848
Typofix: Make handler eat all paths
diff --git a/app.yaml b/app.yaml index 25f7dd7..2b1d741 100644 --- a/app.yaml +++ b/app.yaml @@ -1,8 +1,8 @@ application: eko-eko version: 1-brownk runtime: python api_version: 1 handlers: -- url: / +- url: /.* script: runcgi.py
lericson/eko
e1d3a31e3d0cbe643928e40e08dea1d875437a8c
Add functional eko client.
diff --git a/eko-client.py b/eko-client.py new file mode 100644 index 0000000..61e660f --- /dev/null +++ b/eko-client.py @@ -0,0 +1,152 @@ +#!/usr/bin/env python + +import time +import datetime +import logging +import urllib2 +import urlparse +import optparse + +try: + import json +except ImportError: + import si...
lericson/eko
44674257bccb2dcaec74b0ea1e5608b9c907e9ed
Fine-tune semaphore busy loop waits.
diff --git a/eko/db.py b/eko/db.py index ab358d5..6a39e8e 100644 --- a/eko/db.py +++ b/eko/db.py @@ -1,66 +1,66 @@ import time from google.appengine.ext import db from google.appengine.api import memcache import logging import simplejson logger = logging.getLogger("eko.db") REQ_SEM_EXPIRE = 3600 # an hour...
lericson/eko
2fa8ba5961847952a4f1679254e94830ea527fd2
Initial import of eko application.
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..66b6e4c --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.pyc +*.pyo +.DS_Store diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..715ce1f --- /dev/null +++ b/README.rst @@ -0,0 +1,85 @@ +=====================================...
wagonlips/Admin-Header-Note
fe5097b51aec322bc89b0595aa421d16db5bbb3f
Giving up on TinyMCE for now.
diff --git a/adminHeaderNote.php b/adminHeaderNote.php index 5bf803f..0f26a8e 100644 --- a/adminHeaderNote.php +++ b/adminHeaderNote.php @@ -1,64 +1,56 @@ <?php /* Plugin Name: Admin Header Note Plugin URI: http://computerdemon.com/ Description: A simple plugin that adds a note with a link to the dashboard. Versi...
wagonlips/Admin-Header-Note
7f165e9a8a1364e93a48909e69ecd8e38c1534ef
No significant change was made.
diff --git a/adminHeaderNote.php b/adminHeaderNote.php index 101aab4..5bf803f 100644 --- a/adminHeaderNote.php +++ b/adminHeaderNote.php @@ -1,64 +1,64 @@ <?php /* Plugin Name: Admin Header Note Plugin URI: http://computerdemon.com/ Description: A simple plugin that adds a note with a link to the dashboard. Versi...
wagonlips/Admin-Header-Note
6dc4d3befff36dfe2e8631be413d5d03d468b4c3
Trying to add tiny_mce. Not working yet.
diff --git a/adminHeaderNote.php b/adminHeaderNote.php index d6a7e47..101aab4 100644 --- a/adminHeaderNote.php +++ b/adminHeaderNote.php @@ -1,67 +1,64 @@ <?php /* Plugin Name: Admin Header Note Plugin URI: http://computerdemon.com/ Description: A simple plugin that adds a note with a link to the dashboard. Versi...
wagonlips/Admin-Header-Note
d2dbfc8c91a601e098e751745f9c9154f3c4e100
Initial import.
diff --git a/README b/README new file mode 100644 index 0000000..145e2ac --- /dev/null +++ b/README @@ -0,0 +1,44 @@ +=== Admin Header Note === +Contributors: Sean Camden +Donate link: http://www.generositynetwork.com/ntaf/index.cfm +Tags: Admin page, dashboard, header, note to other admins +Requires at least: 2.0.3 +T...
norman/enc
f36174fede1414b43fd3f73e9f0ac8c1dbcdc4dc
Added slides link.
diff --git a/README.md b/README.md index 635f2e5..1d6cdf5 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,34 @@ # The 9th Bit: Encodings in Ruby 1.9 By [Norman Clarke](http://twitter.com/compay) I hope you enjoyed my presentation at [RubyConf Brazil 2010](http://www.rubyconf.com.br/)! This repository has m...
norman/enc
8fdfa69c76aecba9f1bbfeacc6726033ea74fc2f
Added license.
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..5a8e332 --- /dev/null +++ b/COPYING @@ -0,0 +1,14 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> + + Everyone is permitted to copy and distri...
norman/enc
562e2945ea9833a31b7968b6d460c5f4674c19b7
Docs, demos and slides.
diff --git a/README.md b/README.md new file mode 100644 index 0000000..635f2e5 --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# The 9th Bit: Encodings in Ruby 1.9 + +By [Norman Clarke](http://twitter.com/compay) + +I hope you enjoyed my presentation at [RubyConf Brazil 2010](http://www.rubyconf.com.br/)! + +This repos...
bravoserver/bravo
7be5d792871a8447499911fa1502c6a7c1437dc3
fix faq link
diff --git a/README.rst b/README.rst index 48522aa..fd4948d 100644 --- a/README.rst +++ b/README.rst @@ -1,202 +1,201 @@ ===== Bravo ===== Bravo is a elegant, speedy, and extensible implementation of the Minecraft Alpha/Beta/"Modern" protocol. Only the server side is implemented. Bravo also has a few tools usef...
bravoserver/bravo
058dad38b2988be1ab913e3e2dfd0eed12224466
travis-ci: added notifications
diff --git a/.travis.yml b/.travis.yml index 5e9235b..b9ba6f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,9 @@ language: python python: - "2.6" - "2.7" - "pypy" script: "trial bravo" + +notifications: + irc: "chat.freenode.net#bravoserver"
bravoserver/bravo
bb96c01fbaaf1f7920dd429400f0eb30ea23dffb
requirements: added Pillow
diff --git a/requirements.txt b/requirements.txt index 650f7b1..306ecef 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ construct==2.0.6 +Pillow==2.4.0 Twisted>=11.0
bravoserver/bravo
85e8c9db9522a9ec33184e64f3a99ba22f34567b
Revert "Add PIL to requirements.txt, because web.py plugin needs it"
diff --git a/requirements.txt b/requirements.txt index a5049c4..650f7b1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,2 @@ -PIL==1.1.7 -Twisted==13.2.0 -argparse==1.2.1 construct==2.0.6 -distribute==0.6.34 -wsgiref==0.1.2 -zope.interface==4.1.0 +Twisted>=11.0
bravoserver/bravo
d724cf814293d7ed5df83422094d56375b58f261
inventory/windows: Don't use ListContainer.
diff --git a/bravo/inventory/windows.py b/bravo/inventory/windows.py index b4cb2b2..c29f217 100644 --- a/bravo/inventory/windows.py +++ b/bravo/inventory/windows.py @@ -1,435 +1,435 @@ from itertools import chain, izip -from construct import Container, ListContainer +from construct import Container from bravo impor...
bravoserver/bravo
b8fb3453bbaaa1c647a4d4bb49124048b69a08be
beta/protocol: Remove infamous "Ignoring unlocated position" message.
diff --git a/bravo/beta/protocol.py b/bravo/beta/protocol.py index d0f3c86..a02f447 100644 --- a/bravo/beta/protocol.py +++ b/bravo/beta/protocol.py @@ -1,713 +1,716 @@ # vim: set fileencoding=utf8 : from itertools import product, chain import json from time import time from urlparse import urlunparse from tw...
bravoserver/bravo
48eb8507a131876590cc0e80981cd52368e384ac
Add PIL to requirements.txt, because web.py plugin needs it
diff --git a/requirements.txt b/requirements.txt index 650f7b1..a5049c4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,7 @@ +PIL==1.1.7 +Twisted==13.2.0 +argparse==1.2.1 construct==2.0.6 -Twisted>=11.0 +distribute==0.6.34 +wsgiref==0.1.2 +zope.interface==4.1.0
bravoserver/bravo
777446ff2b5aa7a980ad1f4240f8b97ae7c7572a
Worlds at relative paths don't work.
diff --git a/bravo.ini.example b/bravo.ini.example index c69a10d..78dc72a 100644 --- a/bravo.ini.example +++ b/bravo.ini.example @@ -1,99 +1,97 @@ # Bravo sample configuration. [bravo] # Try to enable Ampoule. This can massively improve server responsiveness, but # it can cause crashes, misrendering, and other we...