repo
string
commit
string
message
string
diff
string
rcoup/yachter
201c25bb462d3d9f6ab4691c3d554414a65149df
Split course numbers out from IDs so they can be renumbered in the admin. SOUTH:0007. Fix up everything else to use numbers rather than IDs for display
diff --git a/media/course_list.js b/media/course_list.js index 2d96f66..04226f9 100644 --- a/media/course_list.js +++ b/media/course_list.js @@ -1,116 +1,116 @@ var map; $(function() { map = new OpenLayers.Map('map', { units: "m", maxResolution: 156543.0339, numZoomLevels: 20, ...
rcoup/yachter
2d47a27cfc4cc5146b571c703564434034c84856
Fix course-rankings when you have emty courses
diff --git a/yachter/courses/views.py b/yachter/courses/views.py index 6994d90..4fc120d 100644 --- a/yachter/courses/views.py +++ b/yachter/courses/views.py @@ -1,71 +1,74 @@ import StringIO from django.contrib.gis import admin from django.shortcuts import get_object_or_404, render_to_response from django.templat...
rcoup/yachter
0e960144f13389aa928f4fce08ad9bdc9ff23aff
Clean up south/django-denorm definitions
diff --git a/yachter/courses/migrations/0006_auto__add_denorm_fields.py b/yachter/courses/migrations/0006_auto__add_denorm_fields.py index 772d271..8d2f662 100644 --- a/yachter/courses/migrations/0006_auto__add_denorm_fields.py +++ b/yachter/courses/migrations/0006_auto__add_denorm_fields.py @@ -1,68 +1,68 @@ # encodi...
rcoup/yachter
46161d82c478e8380f4fea04bbdaac9b6c3bce33
Move courses_export_static command into yachter.courses.utils and expose a zipfile version of it for downloading
diff --git a/yachter/courses/management/commands/courses_export_static.py b/yachter/courses/management/commands/courses_export_static.py index 7b1bbf5..886441b 100644 --- a/yachter/courses/management/commands/courses_export_static.py +++ b/yachter/courses/management/commands/courses_export_static.py @@ -1,42 +1,11 @@ -...
rcoup/yachter
f10a27c6c679790c16c260370449afb137810bba
Make add/edit form a lot nicer, fix bugs around Adding an empty course, make the JS not spew either
diff --git a/media/course_list.js b/media/course_list.js index 73342dd..2d96f66 100644 --- a/media/course_list.js +++ b/media/course_list.js @@ -1,112 +1,116 @@ var map; $(function() { map = new OpenLayers.Map('map', { units: "m", maxResolution: 156543.0339, numZoomLevels: 20, ...
rcoup/yachter
d531973eef64c542cbad7d1e1be1502159922537
Styling for static HTML export
diff --git a/yachter/courses/templates/courses/static_list.html b/yachter/courses/templates/courses/static_list.html index 8ac46b6..693f47e 100644 --- a/yachter/courses/templates/courses/static_list.html +++ b/yachter/courses/templates/courses/static_list.html @@ -1,67 +1,66 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML ...
rcoup/yachter
c0916892641694ee74282e30e5dbaf5cafdc2998
Styling for static HTML export
diff --git a/yachter/courses/templates/courses/static_list.html b/yachter/courses/templates/courses/static_list.html index 3030604..8ac46b6 100644 --- a/yachter/courses/templates/courses/static_list.html +++ b/yachter/courses/templates/courses/static_list.html @@ -1,62 +1,67 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML ...
rcoup/yachter
5f5db204181822f669ebb93e7248636595b3bea0
Add courses_export_static management command for generating a static version of the course map
diff --git a/yachter/courses/management/commands/courses_export_static.py b/yachter/courses/management/commands/courses_export_static.py new file mode 100644 index 0000000..7b1bbf5 --- /dev/null +++ b/yachter/courses/management/commands/courses_export_static.py @@ -0,0 +1,42 @@ +import os +import shutil + +from django....
rcoup/yachter
b0da2cbf8cf3b10128e5a36a3622d51a6581d9ed
Refactor course-map JS into external file
diff --git a/media/course_list.js b/media/course_list.js new file mode 100644 index 0000000..73342dd --- /dev/null +++ b/media/course_list.js @@ -0,0 +1,112 @@ +var map; + +$(function() { + map = new OpenLayers.Map('map', { + units: "m", + maxResolution: 156543.0339, + numZoomLevels: 20, + ...
rcoup/yachter
de9372819ec1bfc29d0c1fc80fd7dde80d3f4007
Move to jQuery 1.4.2
diff --git a/yachter/courses/templates/admin/courses/course/map.html b/yachter/courses/templates/admin/courses/course/map.html index 2989db7..bd10b6c 100644 --- a/yachter/courses/templates/admin/courses/course/map.html +++ b/yachter/courses/templates/admin/courses/course/map.html @@ -1,191 +1,191 @@ {% extends "admin/...
rcoup/yachter
c13a59bb05ece22cc6956b3c6a1645ede7a77183
Tidy up quality-rating fields/denorm
diff --git a/yachter/courses/models.py b/yachter/courses/models.py index 0074490..2952c19 100644 --- a/yachter/courses/models.py +++ b/yachter/courses/models.py @@ -1,307 +1,311 @@ import csv import math import django.db.models import django.contrib.gis.db.models from django.contrib.gis.db import models from dj...
rcoup/yachter
38abd79db597841b39d434516860f3a1e0008ede
Finish course rankings page
diff --git a/yachter/courses/templates/courses/course_rankings.html b/yachter/courses/templates/courses/course_rankings.html index 314b5f3..ec28250 100644 --- a/yachter/courses/templates/courses/course_rankings.html +++ b/yachter/courses/templates/courses/course_rankings.html @@ -1,65 +1,65 @@ {% extends "admin/base_s...
rcoup/yachter
3da8367c20308fb25242439acfa1f7e7f3142da2
Fix template bug
diff --git a/yachter/courses/templates/admin/courses/course/map.html b/yachter/courses/templates/admin/courses/course/map.html index 7c847d6..2989db7 100644 --- a/yachter/courses/templates/admin/courses/course/map.html +++ b/yachter/courses/templates/admin/courses/course/map.html @@ -1,191 +1,191 @@ {% extends "admin/...
rcoup/yachter
7e72bc1514189efdc5a841593c0ddb3256fd04fb
Add denormalised fields for course-related stuff. SOUTH:0006
diff --git a/yachter/courses/migrations/0006_auto__add_denorm_fields.py b/yachter/courses/migrations/0006_auto__add_denorm_fields.py new file mode 100644 index 0000000..772d271 --- /dev/null +++ b/yachter/courses/migrations/0006_auto__add_denorm_fields.py @@ -0,0 +1,68 @@ +# encoding: utf-8 +import datetime +from south...
rcoup/yachter
a6d7bcf1a8d27830a40f0dc0f1814dbc45ccd572
Add denormalized ratings via django-denorm. SOUTH0005
diff --git a/yachter/courses/migrations/0005_auto__add_field_course__quality_ratings.py b/yachter/courses/migrations/0005_auto__add_field_course__quality_ratings.py new file mode 100644 index 0000000..b06ff33 --- /dev/null +++ b/yachter/courses/migrations/0005_auto__add_field_course__quality_ratings.py @@ -0,0 +1,48 @@...
rcoup/yachter
7bf521c75fa1e3dce30400ba49ddd1a35e64fcd1
Add 2x new views - course finder & course ranking list
diff --git a/yachter/courses/templates/admin/courses/course/change_list.html b/yachter/courses/templates/admin/courses/course/change_list.html index 83ac27d..cf7de63 100644 --- a/yachter/courses/templates/admin/courses/course/change_list.html +++ b/yachter/courses/templates/admin/courses/course/change_list.html @@ -1,1...
rcoup/yachter
0314b4274fb628ce66880395195a84464a5b2e55
Add is_laid field to Mark model. SOUTH0004
diff --git a/yachter/courses/migrations/0004_auto__add_field_mark_is_laid.py b/yachter/courses/migrations/0004_auto__add_field_mark_is_laid.py new file mode 100644 index 0000000..88562f4 --- /dev/null +++ b/yachter/courses/migrations/0004_auto__add_field_mark_is_laid.py @@ -0,0 +1,49 @@ +# encoding: utf-8 +import datet...
rcoup/yachter
aa43b7ae5d26a7de95c224e219761da9887e24f2
Make newer south work with coursemark m2m relationship
diff --git a/yachter/courses/migrations/0003_drop_course_number.py b/yachter/courses/migrations/0003_drop_course_number.py index 3dcb2dc..ffc2bc1 100644 --- a/yachter/courses/migrations/0003_drop_course_number.py +++ b/yachter/courses/migrations/0003_drop_course_number.py @@ -1,54 +1,54 @@ from south.db import db f...
rcoup/yachter
25e6708eb244d130099e641bd698ebed964c44bc
Fix bearing/distance to previous/next - they were counting all coursemarks, not just waypoints
diff --git a/yachter/courses/models.py b/yachter/courses/models.py index d0e4407..9d5fe5c 100644 --- a/yachter/courses/models.py +++ b/yachter/courses/models.py @@ -1,276 +1,288 @@ import csv import math from django.contrib.gis.db import models from django.contrib.gis.measure import D from django.contrib.gis.geo...
rcoup/yachter
fe197505cdb31f96f1bf50224efc7160229a4a2c
Add pyc & pyo to gitignore
diff --git a/.gitignore b/.gitignore index 2b0b23d..07dce33 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ yachter/settings_site.py +*.pyc +*.pyo
rcoup/yachter
1f574067aeab5e1e2308735c58ad8d55299f4161
South missed the order_with_respect_to field... but andrewgodwin fixed it in 16 minutes :)
diff --git a/yachter/courses/migrations/0001_initial.py b/yachter/courses/migrations/0001_initial.py index c8616ec..7272937 100644 --- a/yachter/courses/migrations/0001_initial.py +++ b/yachter/courses/migrations/0001_initial.py @@ -1,78 +1,79 @@ from south.db import db from django.db import models from yachter.co...
rcoup/yachter
940b7ceb4a6cc3a1117ab7af4ca42232a3e6fb8e
clean up settings, add more useful stuff to the sample
diff --git a/yachter/settings.py b/yachter/settings.py index e98a79b..512e795 100644 --- a/yachter/settings.py +++ b/yachter/settings.py @@ -1,93 +1,93 @@ -# Django settings for PCC project. +# Django settings for Yachter project. DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( # ('Your Name', 'your_email@do...
rcoup/yachter
1a05c7d572a6ba9dc2b7b91394c29b86e70c585b
defer all constraints, because names aren't consistent across django versions
diff --git a/yachter/courses/migrations/0002_migrate_course_number_to_id.py b/yachter/courses/migrations/0002_migrate_course_number_to_id.py index 5d58a50..4fc609e 100644 --- a/yachter/courses/migrations/0002_migrate_course_number_to_id.py +++ b/yachter/courses/migrations/0002_migrate_course_number_to_id.py @@ -1,46 +1...
rcoup/yachter
15f02a1806d53761f6e5deb409bb9adfc6e77f73
Drop Course.number (use Course.id instead). (migration:0003
diff --git a/yachter/courses/migrations/0003_drop_course_number.py b/yachter/courses/migrations/0003_drop_course_number.py new file mode 100644 index 0000000..0ffc685 --- /dev/null +++ b/yachter/courses/migrations/0003_drop_course_number.py @@ -0,0 +1,53 @@ + +from south.db import db +from django.db import models +from...
rcoup/yachter
263f08a9184c73c1b5ca646b12ed1fdd73cf95a5
Use Course.id instead of Course.number everywhere. (migration:0002)
diff --git a/yachter/courses/admin.py b/yachter/courses/admin.py index 5f8762a..b21d11e 100644 --- a/yachter/courses/admin.py +++ b/yachter/courses/admin.py @@ -1,70 +1,70 @@ from django.contrib.gis import admin from django.shortcuts import get_object_or_404, render_to_response from django.template import RequestCon...
rcoup/yachter
ecf84611badf4164bad53415c75382e48bcaa25e
Start using South
diff --git a/yachter/courses/migrations/0001_initial.py b/yachter/courses/migrations/0001_initial.py new file mode 100644 index 0000000..c8616ec --- /dev/null +++ b/yachter/courses/migrations/0001_initial.py @@ -0,0 +1,78 @@ + +from south.db import db +from django.db import models +from yachter.courses.models import * ...
rcoup/yachter
af10f60e943b2d28c5586bb7a75be2f09d8845e5
Make the README valid & sane markdown
diff --git a/README.md b/README.md index 342651b..9bf5fdc 100644 --- a/README.md +++ b/README.md @@ -1,57 +1,64 @@ -= Yachter - help run better yacht races = +Yachter - help run better yacht races +===================================== -> http://github.com/rcoup/yachter + * [http://github.com/rcoup/yachter](http://gi...
rcoup/yachter
597fa2b94a4886009351a0c0f098b084a50b44f4
Initial import
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2b0b23d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +yachter/settings_site.py diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ef51da2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ + + Apache License...
ikai/App-Engine-OAuth-Consumer-Demo--Python-
6b88bbc28c95aaccb8c7c81a7a290c3897b6e334
Adding templating, more request token flow
diff --git a/main.py b/main.py index 0cdcc66..298a6e5 100644 --- a/main.py +++ b/main.py @@ -1,23 +1,52 @@ import os from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app from google.appengine.api import oauth from google.appengine.ext.webapp import template +# Chang...
ikai/App-Engine-OAuth-Consumer-Demo--Python-
9f32335a2dd06d20d9960825f238b2aa24635d23
Adding source code link for main page
diff --git a/templates/index.html b/templates/index.html index 9d47654..b84ea53 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,6 +1,10 @@ <html> <body> <h1>App Engine OAuth Consumer Demo (Python)</h1> - <p>This is a demo of OAuth Consumer for Python</p> + <p> + This is a demo of OAuth Consumer ...
ikai/App-Engine-OAuth-Consumer-Demo--Python-
c6739c7d2755bce4aa5083f7f695f8d93d33a013
Adding templating
diff --git a/main.py b/main.py index 1d2ca18..0cdcc66 100644 --- a/main.py +++ b/main.py @@ -1,20 +1,23 @@ +import os + from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app from google.appengine.api import oauth +from google.appengine.ext.webapp import template + class...
csmith/Nagios-Status
ae0f6b1d262b71f2bf5320a7fbace988ea7ea35d
Don't show errors for stuff we don't understand or care about.
diff --git a/FileParser.php b/FileParser.php index f67a3dd..d091731 100755 --- a/FileParser.php +++ b/FileParser.php @@ -1,44 +1,46 @@ <?PHP abstract class FileParser { protected abstract function parse_line($line); protected function parse_blockname($block) { return $block; } protected function analy...
csmith/Nagios-Status
20b0402f481100a0ef8975ae9b05d152d930f28a
Initial import
diff --git a/FileParser.php b/FileParser.php new file mode 100755 index 0000000..f67a3dd --- /dev/null +++ b/FileParser.php @@ -0,0 +1,44 @@ +<?PHP + + abstract class FileParser { + + protected abstract function parse_line($line); + + protected function parse_blockname($block) { return $block; } + protected function...
asgeirn/xmleditor
333791a74b67ad32d13cabe109d57930904566b7
Release 1.0.
diff --git a/pom.xml b/pom.xml index a60166e..737de3c 100644 --- a/pom.xml +++ b/pom.xml @@ -1,44 +1,44 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <...
asgeirn/xmleditor
4558a201452c7860375dfde14b1190c7a7dc6d68
Git ignore.
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ae4acb --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +target +.classpath +.project +.settings +*~
asgeirn/xmleditor
67296a7ae35ce4388306d8df18b2de9b53272c54
MainClass manifest
diff --git a/pom.xml b/pom.xml index 80f17cb..a60166e 100644 --- a/pom.xml +++ b/pom.xml @@ -1,35 +1,44 @@ -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance...
asgeirn/xmleditor
1e7f943b0ae3cfe4e18c7c1e6d5c4bb34c3f1e5a
distributionManagement
diff --git a/pom.xml b/pom.xml index b396fcd..80f17cb 100644 --- a/pom.xml +++ b/pom.xml @@ -1,29 +1,35 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> ...
asgeirn/xmleditor
b470a55448d5bb3b7117f317fe21766d00647b65
Made variables final.
diff --git a/src/main/java/com/asgeirnilsen/xmleditor/XmlEditor.java b/src/main/java/com/asgeirnilsen/xmleditor/XmlEditor.java old mode 100755 new mode 100644 index 76b9cbd..240f9f2 --- a/src/main/java/com/asgeirnilsen/xmleditor/XmlEditor.java +++ b/src/main/java/com/asgeirnilsen/xmleditor/XmlEditor.java @@ -1,61 +1,61...
asgeirn/xmleditor
859da82c697c726a2e3b9eda14fbce5a10136386
Initial git commit of xmleditor.
diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..8133907 --- /dev/null +++ b/pom.xml @@ -0,0 +1,29 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-...
btelles/ebcdic_converter
ca9da59683b1dce192511f67c654f03afb0783bd
Regenerated gemspec for version 1.2.1
diff --git a/ebcdic_converter.gemspec b/ebcdic_converter.gemspec index 9a862e4..a387cc6 100644 --- a/ebcdic_converter.gemspec +++ b/ebcdic_converter.gemspec @@ -1,56 +1,56 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encodin...
btelles/ebcdic_converter
a78b8ba7594b475d47e5031cc33dea5758f791e8
Version bump to 1.2.1
diff --git a/VERSION b/VERSION index 26aaba0..6085e94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.0 +1.2.1
btelles/ebcdic_converter
98f469bad76caea5c7e26ce4de977af805d1e884
Regenerated gemspec for version 1.2.0
diff --git a/ebcdic_converter.gemspec b/ebcdic_converter.gemspec index 559e157..9a862e4 100644 --- a/ebcdic_converter.gemspec +++ b/ebcdic_converter.gemspec @@ -1,56 +1,56 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encodin...
btelles/ebcdic_converter
b82d9f8acdbce6a917b156ab7e431bb7ffe2392c
Version bump to 1.2.0
diff --git a/VERSION b/VERSION index 781dcb0..26aaba0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.3 +1.2.0
btelles/ebcdic_converter
361a970782854135783c34211df2eaf3b6b84bbf
Add conversion from integer to ebcdic
diff --git a/lib/ebcdic_converter.rb b/lib/ebcdic_converter.rb index ff151f6..ec2036a 100644 --- a/lib/ebcdic_converter.rb +++ b/lib/ebcdic_converter.rb @@ -1,72 +1,92 @@ # # This module adds one method to String that will # convert the string to a signed ebcdic integer # ebcdic is just the use of the last digit in...
btelles/ebcdic_converter
d9bb749ca880b333809a61020296e7305144b3c9
Regenerated gemspec for version 1.1.3
diff --git a/ebcdic_converter.gemspec b/ebcdic_converter.gemspec index 4771d09..559e157 100644 --- a/ebcdic_converter.gemspec +++ b/ebcdic_converter.gemspec @@ -1,56 +1,56 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encodin...
btelles/ebcdic_converter
258f8e4f73c7c5ee4d9f10ec120cf90451b92d05
Version bump to 1.1.3
diff --git a/VERSION b/VERSION index 45a1b3f..781dcb0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.2 +1.1.3
btelles/ebcdic_converter
8b332d32523b5524047a91d305c921465e46fb14
add strict conversions
diff --git a/lib/ebcdic_converter.rb b/lib/ebcdic_converter.rb index e0de87e..ff151f6 100644 --- a/lib/ebcdic_converter.rb +++ b/lib/ebcdic_converter.rb @@ -1,61 +1,72 @@ # # This module adds one method to String that will # convert the string to a signed ebcdic integer # ebcdic is just the use of the last digit in...
btelles/ebcdic_converter
0245f020332ba59fc9508efe44a527cc65db7e09
Regenerated gemspec for version 1.1.2
diff --git a/ebcdic_converter.gemspec b/ebcdic_converter.gemspec index f1ea953..4771d09 100644 --- a/ebcdic_converter.gemspec +++ b/ebcdic_converter.gemspec @@ -1,56 +1,56 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encodin...
btelles/ebcdic_converter
467a96bed72067f9a158bb9716394ce0f7c3c732
Version bump to 1.1.2
diff --git a/VERSION b/VERSION index 524cb55..45a1b3f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.1 +1.1.2
btelles/ebcdic_converter
9153cb4eb94606c84df3d211d4be266dc43e9fdc
fix negative conversion
diff --git a/lib/ebcdic_converter.rb b/lib/ebcdic_converter.rb index 74ca884..e0de87e 100644 --- a/lib/ebcdic_converter.rb +++ b/lib/ebcdic_converter.rb @@ -1,60 +1,61 @@ # # This module adds one method to String that will # convert the string to a signed ebcdic integer # ebcdic is just the use of the last digit in...
btelles/ebcdic_converter
425d6bce5f3f4ebfda77e77ab8e57ee6b985ab8c
Regenerated gemspec for version 1.1.1
diff --git a/ebcdic_converter.gemspec b/ebcdic_converter.gemspec index 6395b6d..f1ea953 100644 --- a/ebcdic_converter.gemspec +++ b/ebcdic_converter.gemspec @@ -1,55 +1,56 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encodin...
btelles/ebcdic_converter
ed12e8ddf9f682427e43fcbb8ee1a182900e33d2
Version bump to 1.1.1
diff --git a/VERSION b/VERSION index 9084fa2..524cb55 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.0 +1.1.1
btelles/ebcdic_converter
32c7d2d5e50a9628fec1d8df150b048b4f77470f
Make it a rails plugin
diff --git a/rails/init.rb b/rails/init.rb new file mode 100644 index 0000000..ef24aa2 --- /dev/null +++ b/rails/init.rb @@ -0,0 +1 @@ +require 'ebcdic_converter'
btelles/ebcdic_converter
1880eaec32c43d55c3fac913d429c87c5802ade0
Regenerated gemspec for version 1.1.0
diff --git a/ebcdic_converter.gemspec b/ebcdic_converter.gemspec index 284a80d..6395b6d 100644 --- a/ebcdic_converter.gemspec +++ b/ebcdic_converter.gemspec @@ -1,54 +1,55 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encodin...
btelles/ebcdic_converter
c169eef89d663b6c1c31bdff5d4c978540fb97cf
Version bump to 1.1.0
diff --git a/VERSION b/VERSION index 3eefcb9..9084fa2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0 +1.1.0
btelles/ebcdic_converter
5c1c2d6198a24d2c9eedb90ebdfc794d264a9b23
Version bump to 1.0.0
diff --git a/VERSION b/VERSION index 77d6f4c..3eefcb9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.0 +1.0.0
btelles/ebcdic_converter
0a8a8eed1adc94b6b1b1de91041eecf50fb505ef
Version bump to 0.0.0
diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..77d6f4c --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.0.0
nicknunns/Cap-Hill-Game-Night
b41fdd77ab8e7a156eeff8219b0fbed29b949c4c
added conditional for #gameoff tag
diff --git a/app.rb b/app.rb index 26900ee..7f39ea5 100644 --- a/app.rb +++ b/app.rb @@ -1,71 +1,73 @@ require 'rubygems' require 'sinatra' require 'curb' require 'json' configure do Twit_uri = 'http://twitter.com/' Search_uri = Twit_uri + 'search?q=%23' end before do api...
nicknunns/Cap-Hill-Game-Night
06b585cc13c422541200607e583666cc1e5aa62a
URL wrapping bug fixes
diff --git a/app.rb b/app.rb index 16c4932..26900ee 100644 --- a/app.rb +++ b/app.rb @@ -1,70 +1,71 @@ require 'rubygems' require 'sinatra' require 'curb' require 'json' configure do - twit_uri = 'http://twitter.com/' - search_uri = twit_uri + 'search?q=%23' + Twit_uri = 'http://twitter....
nicknunns/Cap-Hill-Game-Night
18bb11a26417f75e7b8e9f1dd5b5cdfbcea5f0b6
Edited readme
diff --git a/README b/README index a606e57..661f7ae 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -h1. Cap Hill Game Night +Cap Hill Game Night -A Sinatra app which digs into a twitter account to find the latest tweet and reformat the page content depending on the presence or absence of the *#gameon* hashtag. +A S...
nicknunns/Cap-Hill-Game-Night
b1c91d397b5593e1ed6828aba158267934bf9fb7
refined get method to search back for hash. added google hosted service file
diff --git a/.gems b/.gems index c83859e..8330498 100644 --- a/.gems +++ b/.gems @@ -1,3 +1,3 @@ sinatra -curl +curb json \ No newline at end of file diff --git a/app.rb b/app.rb index 498ccc1..15f41da 100644 --- a/app.rb +++ b/app.rb @@ -1,71 +1,71 @@ # myapp.rb require 'rubygems' require 'sinatra' - require...
nicknunns/Cap-Hill-Game-Night
04f6a74ec7e21369a4ee985600b12b08d4dbcd45
refined get method to search back for hash. added google hosted service file
diff --git a/.gems b/.gems index 9ee6118..c83859e 100644 --- a/.gems +++ b/.gems @@ -1,2 +1,3 @@ sinatra -twitter_oauth \ No newline at end of file +curl +json \ No newline at end of file
nicknunns/Cap-Hill-Game-Night
ed865b8fedc6c77c5c21e49884c365eea40b2c1a
refined get method to search back for hash. added google hosted service file
diff --git a/app.rb b/app.rb index 6b5cfbe..498ccc1 100644 --- a/app.rb +++ b/app.rb @@ -1,57 +1,71 @@ # myapp.rb require 'rubygems' require 'sinatra' - require 'twitter_oauth' + require 'curl' + require 'json' configure do twit_uri = 'http://twitter.com/' search_uri = twit_uri + 'search?...
nicknunns/Cap-Hill-Game-Night
44b957e40382eeabf489cde2b95351972045c65c
Added readme
diff --git a/README b/README new file mode 100644 index 0000000..a606e57 --- /dev/null +++ b/README @@ -0,0 +1,5 @@ +h1. Cap Hill Game Night + +A Sinatra app which digs into a twitter account to find the latest tweet and reformat the page content depending on the presence or absence of the *#gameon* hashtag. + +See it ...
nicknunns/Cap-Hill-Game-Night
d1c772d848bcbf8cd87d2e868ac3bd43ca06703a
fixed html lang attribute
diff --git a/views/home.erb b/views/home.erb index 5b014e8..544a915 100644 --- a/views/home.erb +++ b/views/home.erb @@ -1,31 +1,31 @@ <!DOCTYPE html> -<html leng ="en"> +<html lang ="en"> <head> <title>Cap Hill Game Night</title> <meta charset="UTF-8"> <script type="text/javascript" src="http://ajax.googleapis...
nicknunns/Cap-Hill-Game-Night
1b478b743a57bd6ac4acb09c933d01ceeb20defb
tweaked bg image and spiced up styling
diff --git a/app.rb b/app.rb index 9265d0a..6b5cfbe 100644 --- a/app.rb +++ b/app.rb @@ -1,18 +1,57 @@ # myapp.rb require 'rubygems' require 'sinatra' require 'twitter_oauth' + + configure do + twit_uri = 'http://twitter.com/' + search_uri = twit_uri + 'search?q=%23' + end + before do ...
nicknunns/Cap-Hill-Game-Night
d4d384189b987e7f0be830484e0e4e10ab020c89
added analytics
diff --git a/views/analytics.erb b/views/analytics.erb new file mode 100644 index 0000000..6c2b402 --- /dev/null +++ b/views/analytics.erb @@ -0,0 +1,13 @@ +<script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-18017427-1']); + _gaq.push(['_trackPageview']); + + (function() { + ...
nicknunns/Cap-Hill-Game-Night
b7c095b6bfbd18d0d6d6f5cb73d146f433f6338d
added background and logic
diff --git a/app.rb b/app.rb index 3ec5c73..9265d0a 100644 --- a/app.rb +++ b/app.rb @@ -1,16 +1,18 @@ # myapp.rb require 'rubygems' require 'sinatra' require 'twitter_oauth' before do @client = TwitterOAuth::Client.new end get '/' do @msg = @client.show('chgamenight')['status'...
nicknunns/Cap-Hill-Game-Night
2c4283a2ff80d9a6b57d4cf339bfff2d19972d77
added background
diff --git a/app.rb b/app.rb index 1deead9..3ec5c73 100644 --- a/app.rb +++ b/app.rb @@ -1,15 +1,16 @@ # myapp.rb require 'rubygems' require 'sinatra' require 'twitter_oauth' before do @client = TwitterOAuth::Client.new end get '/' do @msg = @client.show('chgamenight')['status'...
nicknunns/Cap-Hill-Game-Night
9fa9569bf2aa55455b814f895a733d2fcfcfdf3a
added background
diff --git a/app.rb b/app.rb index d599b76..1deead9 100644 --- a/app.rb +++ b/app.rb @@ -1,14 +1,15 @@ # myapp.rb require 'rubygems' require 'sinatra' require 'twitter_oauth' before do @client = TwitterOAuth::Client.new end get '/' do @msg = @client.show('chgamenight')['status'...
nicknunns/Cap-Hill-Game-Night
fa37b4942a89c83885bcf28a6308392eb68754a6
push to heroku
diff --git a/.gems b/.gems index c61d3d0..9ee6118 100644 --- a/.gems +++ b/.gems @@ -1,2 +1,2 @@ sinatra -twitter_oath \ No newline at end of file +twitter_oauth \ No newline at end of file
nicknunns/Cap-Hill-Game-Night
50375f23b7f9f6c65fbbfe03db643cb94852dd11
push to heroku
diff --git a/.gems b/.gems new file mode 100644 index 0000000..c61d3d0 --- /dev/null +++ b/.gems @@ -0,0 +1,2 @@ +sinatra +twitter_oath \ No newline at end of file diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..afd4fca --- /dev/null +++ b/config.ru @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby + +require...
nicknunns/Cap-Hill-Game-Night
372310bba00cadeb1e928afd84eae847d18944d9
push to heroku
diff --git a/app.rb b/app.rb new file mode 100644 index 0000000..d599b76 --- /dev/null +++ b/app.rb @@ -0,0 +1,14 @@ +# myapp.rb + require 'rubygems' + require 'sinatra' + require 'twitter_oauth' + + before do + @client = TwitterOAuth::Client.new + end + + + get '/' do + @msg = @client.show('chgameni...
NeoCat/e-walkeylife2-reader-for-Linux
87824cf7336bb2483dc507169704ada2c94f35d4
fix January bug
diff --git a/show-history.cpp b/show-history.cpp index 1aa7ca2..b27ba16 100644 --- a/show-history.cpp +++ b/show-history.cpp @@ -1,90 +1,95 @@ #include <stdio.h> #include <iostream> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #include <unistd.h> #include <arpa/inet.h> using namespace std; s...
NeoCat/e-walkeylife2-reader-for-Linux
333e0ddbd76e5c9b02808f36f4b0ce96e7e15aa9
fix infinite loop in December
diff --git a/show-history.cpp b/show-history.cpp index db5a3ad..1aa7ca2 100644 --- a/show-history.cpp +++ b/show-history.cpp @@ -1,90 +1,90 @@ #include <stdio.h> #include <iostream> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #include <unistd.h> #include <arpa/inet.h> using namespace std; s...
NeoCat/e-walkeylife2-reader-for-Linux
e87119936686841de5361dc0c24adddde21ad5bd
Add plot tools for log
diff --git a/plot-daily.sh b/plot-daily.sh new file mode 100755 index 0000000..7ea5e5c --- /dev/null +++ b/plot-daily.sh @@ -0,0 +1,12 @@ +#!/bin/sh +./show-history > log +[ "$1" != "" ] && s=\""$1"\" +[ "$2" != "" ] && e=\""$2"\" +printf " +set terminal x11 +set xdata time +set timefmt \"%%Y/%%m/%%d\" +set grid +set f...
NeoCat/e-walkeylife2-reader-for-Linux
a7423633cad838aa753e4ceae4653de04177267f
Add clock-set feature to usb-dump (-c option) and plot tools for log
diff --git a/show-history.cpp b/show-history.cpp index 4bf35d3..db5a3ad 100644 --- a/show-history.cpp +++ b/show-history.cpp @@ -1,90 +1,90 @@ #include <stdio.h> #include <iostream> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #include <unistd.h> #include <arpa/inet.h> using namespace std; s...
wrug/arrcc
d110bf5764a8d25bf85b3e48117b121e9eedeba4
first failing spec!
diff --git a/.gitignore b/.gitignore index c1e0daf..4fe8d4a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,23 @@ ## MAC OS .DS_Store ## TEXTMATE *.tmproj tmtags ## EMACS *~ \#* .\#* ## VIM *.swp ## PROJECT::GENERAL coverage rdoc pkg ## PROJECT::SPECIFIC +.rvmrc +spec/config/database.yml ...
antlechrist/slack-audio
e82c9f47246b307514d56d51f5e56f0761d3b2f2
Added bristol SlackBuild
diff --git a/bristol/README b/bristol/README new file mode 100644 index 0000000..dc09f0b --- /dev/null +++ b/bristol/README @@ -0,0 +1,9 @@ +bristol (Synthesizer Emulator) + +Bristol is an emulation package for a number of different +classic synthesisers including additive and subtractive +and a few organs. The applic...
antlechrist/slack-audio
a882eaf19cade449f065932ef0806cd4725f6d07
Added Roadmap ala CCRMA, udev-tascam-usx2y
diff --git a/README b/README index 58f510f..69b63bc 100644 --- a/README +++ b/README @@ -1,14 +1,27 @@ -slack-audio +SLACK-AUDIO =========== SlackBuilds for audio production. This repo is in no way connected with SlackBuilds.org or Slackware.com. Many thanks to those people for this great system, though. +Roa...
antlechrist/slack-audio
99d914471e7ad5b5151cb3582c46c94103ac3b01
Added /README
diff --git a/README b/README new file mode 100644 index 0000000..58f510f --- /dev/null +++ b/README @@ -0,0 +1,14 @@ +slack-audio +=========== + +SlackBuilds for audio production. + +This repo is in no way connected with SlackBuilds.org or Slackware.com. Many +thanks to those people for this great system, though. + + +...
scambra/RoundCube-Plugin-Message-Size
d05d3dcd737a5b9a6cc350ca497db0224276c829
fix code style
diff --git a/messagesize.php b/messagesize.php index 8965f52..d821473 100755 --- a/messagesize.php +++ b/messagesize.php @@ -1,43 +1,43 @@ <?php /** * MessageSize * * Plugin to limit the overall size of a message by restricting * the cumulative attachment size * * @version 1.1 * @author Timo Kousa *...
scambra/RoundCube-Plugin-Message-Size
28b5057e109523fa4a802d4cb888921fde6e19d5
add es_ES
diff --git a/localization/es_ES.inc b/localization/es_ES.inc new file mode 100755 index 0000000..01b2e3f --- /dev/null +++ b/localization/es_ES.inc @@ -0,0 +1,9 @@ +<?php +/* Author: scambra */ + +$labels = array(); + +$messages = array(); +$messages['overallsizeerror'] = 'El mensaje excede el tamaño máximo de %s'; +...
scambra/RoundCube-Plugin-Message-Size
dc730612f624815f09ffe5c5829a35fba55f12f9
Translate into spanish
diff --git a/localization/es_ES.inc b/localization/es_ES.inc new file mode 100644 index 0000000..4fd5e21 --- /dev/null +++ b/localization/es_ES.inc @@ -0,0 +1,9 @@ +<?php +/* Author: Philip Weir */ + +$labels = array(); + +$messages = array(); +$messages['overallsizeerror'] = 'El mensaje excede el tamaño máximo de %s...
scambra/RoundCube-Plugin-Message-Size
942a4133d14a75b8a4db48363cbbedcc9268d6ec
add de_*
diff --git a/localization/de_CH.inc b/localization/de_CH.inc new file mode 100755 index 0000000..847f399 --- /dev/null +++ b/localization/de_CH.inc @@ -0,0 +1,9 @@ +<?php +/* Author: Mike Constabel */ + +$labels = array(); + +$messages = array(); +$messages['overallsizeerror'] = 'Die Nachricht hat die maximale Gr...
nealford/writeright
1e3729151320ddb5f9620ab45d77e37cd3884265
mysterious breaking updates laying around between machine migrations
diff --git a/Rakefile b/Rakefile new file mode 120000 index 0000000..de474c9 --- /dev/null +++ b/Rakefile @@ -0,0 +1 @@ +rakefile.rb \ No newline at end of file diff --git a/lib/code_harvest.rb b/lib/code_harvest.rb index dded3a7..5c33db0 100644 --- a/lib/code_harvest.rb +++ b/lib/code_harvest.rb @@ -1,49 +1,46 @@ =be...
nealford/writeright
0fabad848d68b7399990d4ee4beab787d188ddca
adding language support
diff --git a/src/code_harvest.rb b/src/code_harvest.rb index 94a8e69..dded3a7 100644 --- a/src/code_harvest.rb +++ b/src/code_harvest.rb @@ -1,49 +1,49 @@ =begin rdoc Todo: Decorators for build_output_based_on metadata - remove part markers from code +X remove part markers from code harvest parts callouts! ...
nealford/writeright
740e4fef902368bf065ee4a95363c45dbaf564b4
added language support
diff --git a/src/language.rb b/src/language.rb new file mode 100644 index 0000000..d2cb022 --- /dev/null +++ b/src/language.rb @@ -0,0 +1,5 @@ +Language = Struct.new(:name, :extension, :comment_marker) + +$ruby = Language.new("ruby", "rb", "#") +$java = Language.new("java", "java", "//") +$xml = Language.new("xml", "xm...
nealford/writeright
99746423fc0e47432afa09337e94d4bdafe31390
clean up
diff --git a/src/code_harvest.rb b/src/code_harvest.rb index c231b7c..94a8e69 100644 --- a/src/code_harvest.rb +++ b/src/code_harvest.rb @@ -1,52 +1,49 @@ =begin rdoc - +Todo: + Decorators for build_output_based_on metadata + remove part markers from code + harvest parts + callouts! =end require File.dirname(_...
nealford/writeright
0cdab1de64553af4fc1317b3e2e5fafba27419c0
added support for parts
diff --git a/src/SimpleCodeFormatter.rb b/src/SimpleCodeFormatter.rb deleted file mode 100644 index 1092bba..0000000 --- a/src/SimpleCodeFormatter.rb +++ /dev/null @@ -1,13 +0,0 @@ -class SimpleCodeFormatter < CodeFormatter - - def initialize(comment_marker) - @comment_marker = comment_marker - end - - def form...
nealford/writeright
afc0fc742379ebd15827dca9cf4a2501cf3aff75
cleaned up comments
diff --git a/src/code_harvest.rb b/src/code_harvest.rb index 2ba00a7..c231b7c 100644 --- a/src/code_harvest.rb +++ b/src/code_harvest.rb @@ -1,56 +1,52 @@ =begin rdoc -Things to consider: -- what about CDATA around problematic code? Like "<" and "&" -- - gotta escape it because you can't do CDATA tags AND have call-...
edgriebel/allowance
6374ddf58dcfc567d67be5eb4febe1fc7e680a69
more first files
diff --git a/allowance-test.launch b/allowance-test.launch new file mode 100644 index 0000000..4295b6d --- /dev/null +++ b/allowance-test.launch @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<launchConfiguration type="org.eclipse.jdt.junit.launchconfig"> +<booleanAttribute key="org.eclipse.debug.core.append...
elben/stone-tools
ed1b0aad817dc9ce6fcc6a0571d9f71a75ca7483
added .gitignore to ignore *.pyc files
diff --git a/.gitignore b/.gitignore index 55cf735..b8d9103 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -tags \ No newline at end of file +tags +*.pyc
elben/stone-tools
e9b5c9cde11b3bfc7835ac3070328c9c0a20dc3a
added drastic changes to RemoteFile (simplified it greatly), added new example tests and tests for RemoteFile
diff --git a/shared/downloader.py b/shared/downloader.py index 239b998..1a8981d 100644 --- a/shared/downloader.py +++ b/shared/downloader.py @@ -1,468 +1,642 @@ import urllib2 import threading import os import time +from types import * -class DownloadCompleteException(Exception): - pass +# class DownloadCompl...
elben/stone-tools
e7630d3732c86a94e3782d8bd5aa0932f1cb2324
changed way states are checked in Disciple.run; now we don't have to check for multiple possible states
diff --git a/config/default.conf b/config/default.conf index c778f77..c460392 100644 --- a/config/default.conf +++ b/config/default.conf @@ -1,38 +1,38 @@ # configuration file for stone-tools [gentile] url_paul=http://localhost/ local_file=sermon.ts file_ext=pt video_bitrate=6730 mplayer_stdout_file=mplayer_st...
elben/stone-tools
49c1c5c9e9b87bfbc81b591dd364ea4f92d3f4ab
add tags to gitignore
diff --git a/.gitignore b/.gitignore index e69de29..55cf735 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +tags \ No newline at end of file
elben/stone-tools
c74067b9bae8c4d36ca575a787e334a01534b7ce
remoevd backup files just accidentally added
diff --git a/shared/downloader.py b/shared/downloader.py index 7675f24..239b998 100644 --- a/shared/downloader.py +++ b/shared/downloader.py @@ -1,430 +1,468 @@ import urllib2 import threading import os import time - + class DownloadCompleteException(Exception): pass - + class FileNotFoundException(Excepti...
elben/stone-tools
a7b36e0dd1bd8561708d14c77facbabe1c1de88c
reverted changes elben accidentally made to downloader.py and downloader_test.py
diff --git a/tests/.#downloader_test.py b/tests/.#downloader_test.py new file mode 120000 index 0000000..0d87e07 --- /dev/null +++ b/tests/.#downloader_test.py @@ -0,0 +1 @@ +jason@jason-desktop.7692:1263062868 \ No newline at end of file diff --git a/tests/downloader.pyc b/tests/downloader.pyc new file mode 100644 ind...
elben/stone-tools
b92c97590854e516545f52dc4fcbc05316778940
rmed unneeded funcs; added sample HDPVR in comment; check that hdpvr exists before setting DiscipleState as exist
diff --git a/disciple/disciple.py b/disciple/disciple.py index fd98656..b4e49f0 100755 --- a/disciple/disciple.py +++ b/disciple/disciple.py @@ -1,305 +1,274 @@ #!/usr/bin/python import subprocess as sp import os import sys import time import random import ConfigParser from libdisciple import * # parse con...
elben/stone-tools
83c5cfce47efee51a7de10f87337a1c925082a7f
rewrote disciple main to use new Disciple class; fixed mac address retrieval
diff --git a/disciple/disciple.py b/disciple/disciple.py index 8a3e00e..fd98656 100755 --- a/disciple/disciple.py +++ b/disciple/disciple.py @@ -1,295 +1,305 @@ #!/usr/bin/python import subprocess as sp import os import sys import time import random import ConfigParser from libdisciple import * # parse con...