repo
string
commit
string
message
string
diff
string
marook/tagfs
6f5337cd73528796b176af3b491ea6a120cd1cf3
refactored Config: removed not used code
diff --git a/src/modules/tagfs/config.py b/src/modules/tagfs/config.py index 4fc8903..9653d30 100644 --- a/src/modules/tagfs/config.py +++ b/src/modules/tagfs/config.py @@ -1,92 +1,62 @@ #!/usr/bin/env python # -# Copyright 2009, 2010 Markus Pielmeier +# Copyright 2009, 2010, 2012 Markus Pielmeier # # This file is ...
marook/tagfs
b37cf071d51a9a6e50e5ab0bcba28da40b33bedb
the README now suggests to execute the unit tests before installing
diff --git a/README b/README index 42c36dc..2245258 100644 --- a/README +++ b/README @@ -1,120 +1,120 @@ tagfs - tag file system 1) Introduction 2) Requirements 3) Installation 4) Usage 5) Configuration 5.1) Options 5.1.1) tagFileName 5.1.2) enableValueFilters 5.1.3) enableRootItemLinks 6) Further Reading ...
marook/tagfs
4a07c91fefe4b27ebf64586f695beac6c108ce4c
now setup.py fails if there are failing unit tests
diff --git a/setup.py b/setup.py index bd3bea0..af7e1d6 100644 --- a/setup.py +++ b/setup.py @@ -1,254 +1,264 @@ #!/usr/bin/env python # # Copyright 2009 Peter Prohaska # # This file is part of tagfs. # # tagfs is free software: you can redistribute it and/or modify # it under the terms of the GNU General Publi...
marook/tagfs
a40fa4d0d5949d276e4668d88055422546fe96b7
fixed unit tests
diff --git a/src/test/tagfs_test_small/test_filter_context_value_filter_directory_node.py b/src/test/tagfs_test_small/test_filter_context_value_filter_directory_node.py index 76e5b0c..177cbd4 100644 --- a/src/test/tagfs_test_small/test_filter_context_value_filter_directory_node.py +++ b/src/test/tagfs_test_small/test_f...
marook/tagfs
a6fe8695e64d8d94a966f4cf2d2fd1c411efc309
implemented root item links flag feature
diff --git a/src/modules/tagfs/node_filter.py b/src/modules/tagfs/node_filter.py index e1d45ae..4e0ed85 100644 --- a/src/modules/tagfs/node_filter.py +++ b/src/modules/tagfs/node_filter.py @@ -1,90 +1,95 @@ # # Copyright 2011 Markus Pielmeier # # This file is part of tagfs. # # tagfs is free software: you can red...
marook/tagfs
4821699b4ca1e980e7ec7d07a32c43aeea914eeb
fixed tagfs imports
diff --git a/src/modules/tagfs/item_access.py b/src/modules/tagfs/item_access.py index a482c94..eeed313 100644 --- a/src/modules/tagfs/item_access.py +++ b/src/modules/tagfs/item_access.py @@ -1,292 +1,292 @@ # # Copyright 2009 Markus Pielmeier # # This file is part of tagfs. # # tagfs is free software: you can r...
marook/tagfs
26ed39dd4400ea80b81ba762e256324d0e49ad7d
filter directories will only show if they reduce the number of items
diff --git a/src/modules/tagfs/node.py b/src/modules/tagfs/node.py index a8ded1e..8f23a06 100644 --- a/src/modules/tagfs/node.py +++ b/src/modules/tagfs/node.py @@ -1,81 +1,90 @@ # # Copyright 2009 Markus Pielmeier # # This file is part of tagfs. # # tagfs is free software: you can redistribute it and/or modify ...
marook/tagfs
4c1e2cd4d4eb5cfb7e3af4d6db95d3cffe13bf8b
fixed value filters
diff --git a/src/modules/tagfs/item_access.py b/src/modules/tagfs/item_access.py index 3b2beff..a482c94 100644 --- a/src/modules/tagfs/item_access.py +++ b/src/modules/tagfs/item_access.py @@ -1,285 +1,292 @@ # # Copyright 2009 Markus Pielmeier # # This file is part of tagfs. # # tagfs is free software: you can r...
marook/tagfs
3b4dfd8edc0ed74a70e03106486f5cb7eccf881a
value filters can now be disabled
diff --git a/src/modules/tagfs/item_access.py b/src/modules/tagfs/item_access.py index 886b5dc..3b2beff 100644 --- a/src/modules/tagfs/item_access.py +++ b/src/modules/tagfs/item_access.py @@ -1,275 +1,285 @@ # # Copyright 2009 Markus Pielmeier # # This file is part of tagfs. # # tagfs is free software: you can r...
marook/tagfs
7c8902e2aab5c0d7831b8322e7e6d1a08acab2b1
now there are two empty lines after every chapter in docs
diff --git a/README b/README index be85d57..9e613c6 100644 --- a/README +++ b/README @@ -1,119 +1,130 @@ tagfs - tag file system 1) Introduction 2) Requirements 3) Installation 4) Usage 5) Configuration 5.1) Options 5.1.1) tagFileName 5.1.2) enableValueFilters 5.1.3) enableRootItemLinks 6) Tests 7) Furthe...
marook/tagfs
565d23c271f41684bdb4fb4f3f7d1d65a04aac2a
added python 2.7 support in documentation
diff --git a/README b/README index 610c47e..be85d57 100644 --- a/README +++ b/README @@ -1,119 +1,119 @@ tagfs - tag file system 1) Introduction 2) Requirements 3) Installation 4) Usage 5) Configuration 5.1) Options 5.1.1) tagFileName 5.1.2) enableValueFilters 5.1.3) enableRootItemLinks 6) Tests 7) Furthe...
marook/tagfs
16ae7d2dd34e2c44720456a0ee76feabb7b3260c
removed no longer used filter code
diff --git a/src/modules/tagfs/item_access.py b/src/modules/tagfs/item_access.py index 7052e44..886b5dc 100644 --- a/src/modules/tagfs/item_access.py +++ b/src/modules/tagfs/item_access.py @@ -1,351 +1,275 @@ # # Copyright 2009 Markus Pielmeier # # This file is part of tagfs. # # tagfs is free software: you can r...
marook/tagfs
061fe693d949b0b95ccbbdc713fcee3328c0f0b2
migrated csv export from tagfs master branch
diff --git a/src/modules/tagfs/node_export.py b/src/modules/tagfs/node_export.py index 8301282..23ecab1 100644 --- a/src/modules/tagfs/node_export.py +++ b/src/modules/tagfs/node_export.py @@ -1,54 +1,55 @@ # # Copyright 2011 Markus Pielmeier # # This file is part of tagfs. # # tagfs is free software: you can red...
marook/tagfs
fb250ddf0bf41e1b9c917191b537dacb4123f0db
introduced ExportDirectoryNode
diff --git a/src/modules/tagfs/node_export.py b/src/modules/tagfs/node_export.py new file mode 100644 index 0000000..8301282 --- /dev/null +++ b/src/modules/tagfs/node_export.py @@ -0,0 +1,54 @@ +# +# Copyright 2011 Markus Pielmeier +# +# This file is part of tagfs. +# +# tagfs is free software: you can redistribute it...
marook/tagfs
c5c57eaa8f8e3ad53ac2f7c515f040492083e8d7
report snapshot
diff --git a/reports/2011-06-06_05_28_41/coverage.txt b/reports/2011-06-06_05_28_41/coverage.txt new file mode 100644 index 0000000..9e8542a --- /dev/null +++ b/reports/2011-06-06_05_28_41/coverage.txt @@ -0,0 +1,20 @@ +Name Stmts Exec Cover Missing +-----------------------------...
marook/tagfs
a0c8f2d34abea505df7eaedf2b7dcbdab8b31e0d
implemented test for ContextValueFilterDirectoryNode
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bd44ede --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +target +build diff --git a/.project b/.project new file mode 100644 index 0000000..188e611 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescr...
marook/tagfs
20c8cc8ca5fdee41b88df78170ec47e474463680
migrated test runner from https://github.com/marook/minecraft-world-io to tagfs
diff --git a/setup.py b/setup.py index 4c3334e..5c99920 100644 --- a/setup.py +++ b/setup.py @@ -1,213 +1,250 @@ #!/usr/bin/env python # # Copyright 2009 Peter Prohaska # # This file is part of tagfs. # # tagfs is free software: you can redistribute it and/or modify # it under the terms of the GNU General Publi...
marook/tagfs
f52d508dd19aeccb1f245e04e688b313fb66ec49
now ignorring tagfs configuration directory as item
diff --git a/src/modules/tagfs/item_access.py b/src/modules/tagfs/item_access.py index 82f6cfa..45ad9b6 100644 --- a/src/modules/tagfs/item_access.py +++ b/src/modules/tagfs/item_access.py @@ -1,336 +1,340 @@ # # Copyright 2009 Markus Pielmeier # # This file is part of tagfs. # # tagfs is free software: you can r...
marook/tagfs
8bb718dddd5eedd75ace5dcb63cc1bbcc1373dc5
added comments to the default nodes
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bd44ede --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +target +build diff --git a/.project b/.project new file mode 100644 index 0000000..188e611 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescr...
jwilger/jack-the-ripper
7e77175b7f575f8f616dcb96d7925c4f4c52af4a
Switch to SqsGen2, as Amazon appears to have deprecated API versions prior to 2008-01-01 as of yesterday.
diff --git a/bin/jack_the_ripper b/bin/jack_the_ripper index 8fd6191..474fa16 100644 --- a/bin/jack_the_ripper +++ b/bin/jack_the_ripper @@ -1,11 +1,11 @@ #!/usr/bin/env ruby LOAD_PATH = File.expand_path( File.dirname( __FILE__ ) + '/../lib' ) require 'rubygems' -gem 'daemons', '= 1.0.9' +gem 'daemons', '>= 1.0.9' ...
jwilger/jack-the-ripper
02cf1d48cc48579486d9c0ccc085a87b2b8f159b
Check for PostScript file using case-insensitive matching
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 50841de..69eb3a9 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,53 +1,53 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'rubygems' gem 'right_aws' gem 'right_http_connection' require 'yaml' require 'r...
jwilger/jack-the-ripper
06844b75a4cddcc233b05f610a622464f9b2b164
Not sure WTF happened to the vendor directory, and not sure why it was there in the first place. Using external gems instead.
diff --git a/Manifest.txt b/Manifest.txt index d49b46e..594e933 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,13 +1,13 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper lib/jack_the_ripper.rb lib/jack_the_ripper/http_file.rb lib/jack_the_ripper/processor.rb lib/jack_the_ripper/uri_fix.rb...
jwilger/jack-the-ripper
3b10aa5cfc050fa504cb6f3205c278556928654a
Convert EPS to PDF
diff --git a/lib/jack_the_ripper/processor.rb b/lib/jack_the_ripper/processor.rb index fa55599..6a8a7d1 100644 --- a/lib/jack_the_ripper/processor.rb +++ b/lib/jack_the_ripper/processor.rb @@ -1,44 +1,51 @@ require 'jack_the_ripper/http_file' module JackTheRIPper class Processor def initialize( instructions...
jwilger/jack-the-ripper
dd351771d1b699dae4cb41f0b5251c971de9b65f
Added .gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0c6117d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +pkg \ No newline at end of file
jwilger/jack-the-ripper
a957fefdf88d87c8fe708bcfcd306964525e4009
Stub Logger in Processor Tests
diff --git a/test/jack_the_ripper/test_processor.rb b/test/jack_the_ripper/test_processor.rb index 6801ea7..de3e0be 100644 --- a/test/jack_the_ripper/test_processor.rb +++ b/test/jack_the_ripper/test_processor.rb @@ -1,197 +1,201 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) + '/../../lib' ) ) require '...
jwilger/jack-the-ripper
63e4f49b70590c3aff79d0665d493455fdebba2e
Make sure tests can access necessary libraries when run individually.
diff --git a/test/jack_the_ripper/test_http_file.rb b/test/jack_the_ripper/test_http_file.rb index 3b68140..12ad28d 100644 --- a/test/jack_the_ripper/test_http_file.rb +++ b/test/jack_the_ripper/test_http_file.rb @@ -1,159 +1,160 @@ +$:.unshift( File.expand_path( File.dirname( __FILE__ ) + '/../../lib' ) ) require 'ru...
jwilger/jack-the-ripper
3431920c812d1d65f1c0ef699a1bfe8464a547ba
Use Rubygems to load Hoe in Rakefile
diff --git a/Rakefile b/Rakefile index cef1019..72dea7b 100644 --- a/Rakefile +++ b/Rakefile @@ -1,17 +1,17 @@ -VENDOR_DIR = File.expand_path( File.dirname( __FILE__ ) + '/vendor' ) -$:.unshift( VENDOR_DIR + '/hoe-1.5.0/lib' ) -$:.unshift( VENDOR_DIR + '/rubyforge-0.4.4/lib' ) +require 'rubygems' +gem 'hoe', '=1.5.1' +...
jwilger/jack-the-ripper
c7f13125c2002ca32c1618246854b9eb90a2f894
Added right_aws to list of gem dependencies
diff --git a/Rakefile b/Rakefile index b37dd19..cef1019 100644 --- a/Rakefile +++ b/Rakefile @@ -1,17 +1,17 @@ VENDOR_DIR = File.expand_path( File.dirname( __FILE__ ) + '/vendor' ) $:.unshift( VENDOR_DIR + '/hoe-1.5.0/lib' ) $:.unshift( VENDOR_DIR + '/rubyforge-0.4.4/lib' ) require 'hoe' require './lib/jack_the_ri...
jwilger/jack-the-ripper
7ec7977c29f0ea7e86fc9cf9eb606b0c707fe43f
incremented version string for dev version to 1.3.1.1
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 16e834c..1c59760 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,53 +1,53 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) VENDOR_DIR = File.expand_path( File.dirname( __FILE__ ) + '/../vendor' ) $:.unshift( VENDOR...
jwilger/jack-the-ripper
b8a1aa24dc7225ca3a74a1d376f66441a131077d
Removed CTI-specific CruiseControl.rb configuration
diff --git a/Rakefile b/Rakefile index f05673b..b37dd19 100644 --- a/Rakefile +++ b/Rakefile @@ -1,20 +1,17 @@ VENDOR_DIR = File.expand_path( File.dirname( __FILE__ ) + '/vendor' ) $:.unshift( VENDOR_DIR + '/hoe-1.5.0/lib' ) $:.unshift( VENDOR_DIR + '/rubyforge-0.4.4/lib' ) require 'hoe' require './lib/jack_the_ri...
jwilger/jack-the-ripper
b9d708768b29cadb8b487a795f0dbcd8977d41e1
added cruise control config
diff --git a/Manifest.txt b/Manifest.txt index f313bdc..3f1911c 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,120 +1,121 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper +cruise_config.rb lib/jack_the_ripper.rb lib/jack_the_ripper/http_file.rb lib/jack_the_ripper/processor.rb lib/jack_t...
jwilger/jack-the-ripper
fd7ca5cf90fab0f8e7436ae9504c91a99a72521d
added mime-types-1.15 library to vendor
diff --git a/Manifest.txt b/Manifest.txt index 060994f..f313bdc 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,66 +1,120 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper lib/jack_the_ripper.rb lib/jack_the_ripper/http_file.rb lib/jack_the_ripper/processor.rb lib/jack_the_ripper/uri_fix.r...
jwilger/jack-the-ripper
dc3c3dbeb51626a3adb5ac27a2b04f2a17b517ec
added rubyforge-0.4.4 to vendor
diff --git a/Rakefile b/Rakefile index 625e602..91dcaef 100644 --- a/Rakefile +++ b/Rakefile @@ -1,15 +1,17 @@ -$:.unshift( File.expand_path( File.dirname( __FILE__ ) + '/vendor/hoe-1.5.0/lib' ) ) +VENDOR_DIR = File.expand_path( File.dirname( __FILE__ ) + '/vendor' ) +$:.unshift( VENDOR_DIR + '/hoe-1.5.0/lib' ) +$:.uns...
jwilger/jack-the-ripper
a2c93cfbb1fbbc374c8f1b60e3a216bdb49a393b
added hoe library to vendor
diff --git a/Manifest.txt b/Manifest.txt index 22d005b..060994f 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,59 +1,66 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper lib/jack_the_ripper.rb lib/jack_the_ripper/http_file.rb lib/jack_the_ripper/processor.rb lib/jack_the_ripper/uri_fix.rb...
jwilger/jack-the-ripper
aa37c0a23ea367ff2646614e3b4c1968d438b686
tagging 1.3.0
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index c6332d1..9d56bf5 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,52 +1,52 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
08d907965c73ae1dd62e226c52cf77347eb7bc64
Fixed the URI module so that URI.parse does not raise an exception on URIs with square brackets ("[" and "]") in them.
diff --git a/lib/jack_the_ripper/http_file.rb b/lib/jack_the_ripper/http_file.rb index 634389d..13a5f1d 100644 --- a/lib/jack_the_ripper/http_file.rb +++ b/lib/jack_the_ripper/http_file.rb @@ -1,96 +1,97 @@ require 'uri' +require 'jack_the_ripper/uri_fix' require 'net/http' require 'net/https' require 'rubygems' g...
jwilger/jack-the-ripper
33497875569d4338834608aa170a4a53f8efea97
tagging 1.2.0 release
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 05d6c51..c6332d1 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,52 +1,52 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
93ea0584e9e829b7b92af01ce4d3788a55195551
Remove message from queue if conversion fails because of invalid URI for GET or PUT
diff --git a/lib/jack_the_ripper/http_file.rb b/lib/jack_the_ripper/http_file.rb index 2f69239..634389d 100644 --- a/lib/jack_the_ripper/http_file.rb +++ b/lib/jack_the_ripper/http_file.rb @@ -1,94 +1,96 @@ require 'uri' require 'net/http' require 'net/https' require 'rubygems' gem 'mime-types' require 'mime/type...
jwilger/jack-the-ripper
c2223e1f8608c3d433896b2574921af0b4d46b90
tagging 1.1.0
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 848e617..05d6c51 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,52 +1,52 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
9684e1475e8254334384852303a5751b21d22382
set logging level to WARN
diff --git a/lib/jack_the_ripper_server.rb b/lib/jack_the_ripper_server.rb index 40e9eaf..b1fe8e2 100755 --- a/lib/jack_the_ripper_server.rb +++ b/lib/jack_the_ripper_server.rb @@ -1,71 +1,72 @@ #!/usr/bin/env ruby unless ENV[ 'AWS_ACCESS_KEY_ID' ] && ENV[ 'AWS_SECRET_ACCESS_KEY' ] raise "Must set AWS_ACCESS_KEY_I...
jwilger/jack-the-ripper
04715ef841c04ed061a1cb2f36cf9d873039d662
tagged 1.0.0
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 68f7cc8..848e617 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,52 +1,52 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
6ea87b8b9c566385132b2af7ae32fa2a0cd48a3e
removed speaking part - it's getting a bit annoying, plus it slows things down quite a bit
diff --git a/lib/jack_the_ripper/processor.rb b/lib/jack_the_ripper/processor.rb index 53e772b..fa55599 100644 --- a/lib/jack_the_ripper/processor.rb +++ b/lib/jack_the_ripper/processor.rb @@ -1,45 +1,44 @@ require 'jack_the_ripper/http_file' module JackTheRIPper class Processor def initialize( instructions...
jwilger/jack-the-ripper
f1fc9e4e8602ddbd13eecbf2c1a4101a59dd5431
tagging 0.2.1
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 073b8c8..68f7cc8 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,52 +1,52 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
58fa5bdc75ada770e184d9d217db76febeae7269
fixed mistake in code where order of arguments was reversed
diff --git a/lib/jack_the_ripper/http_file.rb b/lib/jack_the_ripper/http_file.rb index cce00da..2f69239 100644 --- a/lib/jack_the_ripper/http_file.rb +++ b/lib/jack_the_ripper/http_file.rb @@ -1,94 +1,94 @@ require 'uri' require 'net/http' require 'net/https' require 'rubygems' gem 'mime-types' require 'mime/type...
jwilger/jack-the-ripper
9b9c8385becd3e3de6842ef44d312fdd20a3110d
tagged release 0.2.0
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index e075482..073b8c8 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,52 +1,52 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
820977e7f8dc2f5b04547703625f1310097a9592
HTTPFile now handles SSL URIs, follows up to 10 redirects on PUT.
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 4544074..e075482 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,47 +1,52 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
f87a8f9d4a774a92415f678b332fee17f37ecfa8
tagging release 0.1.0
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 0d35a2e..4544074 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,47 +1,47 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
9326863559746a91fef57621d7150bbfeff184e1
Tweaked error handling. Only a 404 on source GET, 404 on result PUT or failure of the system conversion command should cause the message to be deleted from the queue.
diff --git a/lib/jack_the_ripper/http_file.rb b/lib/jack_the_ripper/http_file.rb index 8151b33..a9a7607 100644 --- a/lib/jack_the_ripper/http_file.rb +++ b/lib/jack_the_ripper/http_file.rb @@ -1,65 +1,65 @@ require 'uri' require 'net/http' require 'rubygems' gem 'mime-types' require 'mime/types' module JackTheR...
jwilger/jack-the-ripper
8b8893dae476fb67c44826ff77f350eec1d19d2d
Don't die if we get a connection refused when downloading source file or putting result.
diff --git a/lib/jack_the_ripper/http_file.rb b/lib/jack_the_ripper/http_file.rb index ef3ca9f..8151b33 100644 --- a/lib/jack_the_ripper/http_file.rb +++ b/lib/jack_the_ripper/http_file.rb @@ -1,62 +1,65 @@ require 'uri' require 'net/http' require 'rubygems' gem 'mime-types' require 'mime/types' module JackTheR...
jwilger/jack-the-ripper
65346c4dd501d2e66c2623d55bdd7cf07a8070bb
Follow redirection up to 10 times in HTTPFile.get
diff --git a/lib/jack_the_ripper/http_file.rb b/lib/jack_the_ripper/http_file.rb index fbba643..ef3ca9f 100644 --- a/lib/jack_the_ripper/http_file.rb +++ b/lib/jack_the_ripper/http_file.rb @@ -1,57 +1,62 @@ require 'uri' require 'net/http' require 'rubygems' gem 'mime-types' require 'mime/types' module JackTheR...
jwilger/jack-the-ripper
f06b606748c09f74a42eb9286ffdb629a8b0e02f
removed existing release tags, should not have made them yet
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 2b9be67..0d35a2e 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,47 +1,47 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
c13c8ad60ab283f4ed64e7841057d3b698745cf6
added a bunch of error handling
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 3559c0a..2b9be67 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,34 +1,47 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
29c5dd4510ec6bd92b2e147791363753ad8b0ed1
set next version # to 0.1.2
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 5c3e80d..3559c0a 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,34 +1,34 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
61a523fd21a105a9fde1cd1b28a748e34e84afb1
set next version number to 0.1.1
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 23b6dc0..5c3e80d 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,34 +1,34 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
fbabe2ed46298516b450a7b736b08cf496f5dea1
HTTPFile will raise exceptions if get or put fails.
diff --git a/lib/jack_the_ripper/http_file.rb b/lib/jack_the_ripper/http_file.rb index 72052d4..0aa2be6 100644 --- a/lib/jack_the_ripper/http_file.rb +++ b/lib/jack_the_ripper/http_file.rb @@ -1,38 +1,43 @@ require 'uri' require 'net/http' require 'rubygems' gem 'mime-types' require 'mime/types' module JackTheR...
jwilger/jack-the-ripper
edfc7a9e5ec328331831244d38de0a5e02521c45
Fixed that Processor silently ignored failed conversion.
diff --git a/lib/jack_the_ripper/processor.rb b/lib/jack_the_ripper/processor.rb index d8960fe..a51a5d2 100644 --- a/lib/jack_the_ripper/processor.rb +++ b/lib/jack_the_ripper/processor.rb @@ -1,39 +1,42 @@ require 'jack_the_ripper/http_file' module JackTheRIPper class Processor + class ConversionFailed < Sta...
jwilger/jack-the-ripper
dfe52dccc6522132a2c44e3e74e3e122b7da6527
fixed version #
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index e60b4f8..23b6dc0 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,34 +1,34 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
34bfffc01b72fe76d79fae3b119e50f49a655a62
tagging release 0.1.0
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index 8fb4999..e60b4f8 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,34 +1,34 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) require 'yaml' require 'rubygems' gem 'right_aws', '= 1.5.0' require 'right_aws' modul...
jwilger/jack-the-ripper
283eea11857d1a9e3e2a7ce8333cc072c7b538de
set up daemonization
diff --git a/Manifest.txt b/Manifest.txt index fa2b7c7..8b157e0 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,57 +1,58 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper lib/jack_the_ripper.rb lib/jack_the_ripper/http_file.rb lib/jack_the_ripper/processor.rb +lib/jack_the_ripper_server.rb ...
jwilger/jack-the-ripper
32010dfdb1e21cf691d37a91569c7b21d8448539
fixed Manifest
diff --git a/Manifest.txt b/Manifest.txt index bfd2f20..fa2b7c7 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,56 +1,57 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper lib/jack_the_ripper.rb lib/jack_the_ripper/http_file.rb lib/jack_the_ripper/processor.rb +test/jack_the_ripper/test_http...
jwilger/jack-the-ripper
3e826271800e33d77e0990405b10322104650823
Added implementation of JackTheRIPper::HTTPFile
diff --git a/Rakefile b/Rakefile index e120d8d..e84f92d 100644 --- a/Rakefile +++ b/Rakefile @@ -1,19 +1,19 @@ # -*- ruby -*- require 'rubygems' require 'hoe' require './lib/jack_the_ripper.rb' Hoe.new('JackTheRIPper', JackTheRIPper::VERSION) do |p| p.rubyforge_name = 'jack_the_ripper' p.author = 'John W...
jwilger/jack-the-ripper
574fb1509b613a2b4cbb7f13bdae9be2757b02bc
Converted to using the RightAws library for communication with SQS
diff --git a/Manifest.txt b/Manifest.txt index 0767703..bfd2f20 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,62 +1,56 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper lib/jack_the_ripper.rb lib/jack_the_ripper/http_file.rb lib/jack_the_ripper/processor.rb -lib/sqs/queue.rb -lib/sqs/sign...
jwilger/jack-the-ripper
c3f39cb4367f95a4586d62212e0b985cd904b527
Run YAML::load on message body received from queue before passing it to the Processor
diff --git a/lib/jack_the_ripper.rb b/lib/jack_the_ripper.rb index b6f0bc7..6f37d04 100644 --- a/lib/jack_the_ripper.rb +++ b/lib/jack_the_ripper.rb @@ -1,15 +1,16 @@ $:.unshift( File.expand_path( File.dirname( __FILE__ ) ) ) +require 'yaml' module JackTheRIPper VERSION = '0.1.0' class << self def proc...
jwilger/jack-the-ripper
c520aa3a8d34f86dda24872ee6ad050a837683d3
Added functionality to JackTheRIPper::Processor to scale, pad and convert format of files
diff --git a/Manifest.txt b/Manifest.txt index fb25d86..0767703 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,60 +1,62 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper lib/jack_the_ripper.rb +lib/jack_the_ripper/http_file.rb lib/jack_the_ripper/processor.rb lib/sqs/queue.rb lib/sqs/sign...
jwilger/jack-the-ripper
6570fba8d17cd059d25ca9bd00b5678fa0262aa5
added JackTheRIPper.process_next_message
diff --git a/Manifest.txt b/Manifest.txt index 5d83507..fb25d86 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,9 +1,60 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper lib/jack_the_ripper.rb +lib/jack_the_ripper/processor.rb +lib/sqs/queue.rb lib/sqs/signature.rb +lib/sqs/signed_request.rb...
jwilger/jack-the-ripper
b7fecbd72f6ff814283e12251f4bb5ed3afcd20e
added SQS::Queue with ability to create queues, receive messages and delete messages. Also changed SQS::SignedRequest to raise an exception if the response from SQS is not in the 2xx range
diff --git a/lib/sqs/queue.rb b/lib/sqs/queue.rb new file mode 100644 index 0000000..a3b5626 --- /dev/null +++ b/lib/sqs/queue.rb @@ -0,0 +1,37 @@ +require 'rexml/document' +require 'sqs/signed_request' + +module SQS + class Queue + attr_accessor :name, :access_key_id, :secret_access_key + + def initialize( ...
jwilger/jack-the-ripper
26c7982ea1a8ba49bc351a4a9b8704771549398b
changed TestSQSSignature to indicate that we use Timestamp parameter rather than Expires parameter
diff --git a/test/sqs/test_signature.rb b/test/sqs/test_signature.rb index 11778e9..4ad3e6e 100644 --- a/test/sqs/test_signature.rb +++ b/test/sqs/test_signature.rb @@ -1,26 +1,26 @@ require 'test/unit' require 'sqs/signature' class TestSQSSignature < Test::Unit::TestCase def test_should_generate_expected_signa...
jwilger/jack-the-ripper
ee03f36b6b81c942c4b4d4091beda0601ceb770a
added SQS::SignedRequest module
diff --git a/lib/sqs/signature.rb b/lib/sqs/signature.rb index 55b586f..9232094 100644 --- a/lib/sqs/signature.rb +++ b/lib/sqs/signature.rb @@ -1,23 +1,23 @@ require 'base64' require 'digest/sha1' require 'cgi' module SQS class Signature - def initialize( args = {} ) - @params = args[ :params ] - ...
jwilger/jack-the-ripper
bc17d7e6062e6fe151f88a2a9683d0344914c226
Added SQS::Signature class to calculate AWS SQS request signatures from specified params and secret key
diff --git a/Manifest.txt b/Manifest.txt index 4d6625f..5d83507 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -1,7 +1,9 @@ History.txt Manifest.txt README.txt Rakefile bin/jack_the_ripper lib/jack_the_ripper.rb -test/test_jack_the_ripper.rb \ No newline at end of file +lib/sqs/signature.rb +test/sqs/test_signat...
jwilger/jack-the-ripper
926b42c8d256dea966e93a3f0101a9f6808972ef
some project setup
diff --git a/README.txt b/README.txt index 9b0dd55..7d2057b 100644 --- a/README.txt +++ b/README.txt @@ -1,48 +1,72 @@ -= JackTheRipper += JackTheRIPper -* FIX (url) +http://johnwilger.com/search?q=JackTheRIPper == DESCRIPTION: -FIX (describe your package) +RIPs Postscript documents (PDF, AI, EPS, etc) and perfo...
jwilger/jack-the-ripper
9d264b745684ea62235cd67ca5744eda661c0f8c
initial import
diff --git a/History.txt b/History.txt new file mode 100644 index 0000000..d656c5f --- /dev/null +++ b/History.txt @@ -0,0 +1,5 @@ +=== 1.0.0 / 2008-02-10 + +* 1 major enhancement + * Birthday! + diff --git a/Manifest.txt b/Manifest.txt new file mode 100644 index 0000000..4d6625f --- /dev/null +++ b/Manifest.txt @@ -0...
straup/gae-flickrforbusypeople
34dcc5e065f3e823a21c7f12dca1bd45c957ebcc
favicon and touch icon
diff --git a/app.yaml b/app.yaml index 2b4e6f8..f0ddf3b 100644 --- a/app.yaml +++ b/app.yaml @@ -1,35 +1,43 @@ application: flickrforbusypeople version: 11 runtime: python api_version: 1 skip_files: - ^(.*/)?app\.yaml - ^(.*/)?app\.yml - ^(.*/)?index\.yaml - ^(.*/)?index\.yml - ^(.*/)?#.*# - ^(.*/)?.*~ - ...
straup/gae-flickrforbusypeople
7fa57284494fefd470abf72242bf854244425554
add ffbp_deferred_loading to sample config
diff --git a/config.py.sample b/config.py.sample index 5e5e9b1..12e35ff 100644 --- a/config.py.sample +++ b/config.py.sample @@ -1,6 +1,7 @@ config = { 'flickr_apikey' : 'YER_FLICKR_APIKEY', 'flickr_apisecret' : 'YER_FLICKR_APISECRET', 'flickr_minperms' : 'read', 'javascript_logging' : 0, + 'ffb...
straup/gae-flickrforbusypeople
10c64912b06c894041bd9cb387bd80be2ece8538
deferred loading (did I never commit this?) and sad face notice inre: API fail
diff --git a/app.yaml b/app.yaml index 3ba5f2f..2b4e6f8 100644 --- a/app.yaml +++ b/app.yaml @@ -1,35 +1,35 @@ application: flickrforbusypeople -version: 10 +version: 11 runtime: python api_version: 1 skip_files: - ^(.*/)?app\.yaml - ^(.*/)?app\.yml - ^(.*/)?index\.yaml - ^(.*/)?index\.yml - ^(.*/)?#.*# - ^...
straup/gae-flickrforbusypeople
d1a7f7a38b4b2fd62dda5da7042b57c7a30e6933
if mobile and embiggen, show 240 versions not 500; fussing with whitespace
diff --git a/app.yaml b/app.yaml index 61d82df..3ba5f2f 100644 --- a/app.yaml +++ b/app.yaml @@ -1,35 +1,35 @@ application: flickrforbusypeople -version: 8 +version: 10 runtime: python api_version: 1 skip_files: - ^(.*/)?app\.yaml - ^(.*/)?app\.yml - ^(.*/)?index\.yaml - ^(.*/)?index\.yml - ^(.*/)?#.*# - ^(...
straup/gae-flickrforbusypeople
69a0da11b69af3c8186f665300c6083b4b89eed3
support for deffered contacts loading
diff --git a/app.yaml b/app.yaml index a048ac1..61d82df 100644 --- a/app.yaml +++ b/app.yaml @@ -1,31 +1,35 @@ application: flickrforbusypeople -version: 6 +version: 8 runtime: python api_version: 1 skip_files: - ^(.*/)?app\.yaml - ^(.*/)?app\.yml - ^(.*/)?index\.yaml - ^(.*/)?index\.yml - ^(.*/)?#.*# - ^(....
straup/gae-flickrforbusypeople
ba4cae978241a8970109a7b51778be35a703c91f
do not embiggen if photo count for a user is > 20
diff --git a/css/main.css b/css/main.css index 6e0cee8..b5285ef 100644 --- a/css/main.css +++ b/css/main.css @@ -1,264 +1,270 @@ /* elements */ body { font-family:sans-serif; font-size:11pt; color:darkslategrey; margin-top:25px; margin-left:0; margin-right:0; ...
straup/gae-flickrforbusypeople
2bfe4b7b0d89ad4c8a6562b7637a944efeadf47d
embiggenizing - make it so
diff --git a/app.yaml b/app.yaml index 0879066..a048ac1 100644 --- a/app.yaml +++ b/app.yaml @@ -1,31 +1,31 @@ application: flickrforbusypeople -version: 5 +version: 6 runtime: python api_version: 1 skip_files: - ^(.*/)?app\.yaml - ^(.*/)?app\.yml - ^(.*/)?index\.yaml - ^(.*/)?index\.yml - ^(.*/)?#.*# - ^(....
straup/gae-flickrforbusypeople
9976ae248f79f1728a795a2336427c5112516a45
start on work to allow embiggening of photos
diff --git a/app.yaml b/app.yaml index 7fd1d04..0879066 100644 --- a/app.yaml +++ b/app.yaml @@ -1,31 +1,31 @@ application: flickrforbusypeople -version: 3 +version: 5 runtime: python api_version: 1 skip_files: - ^(.*/)?app\.yaml - ^(.*/)?app\.yml - ^(.*/)?index\.yaml - ^(.*/)?index\.yml - ^(.*/)?#.*# - ^(....
straup/gae-flickrforbusypeople
b73dec38f5b8e986258a056830927ac3c8e68ef4
sigh...app engine doesn't support minor numbers for versioning (which is weird)
diff --git a/app.yaml b/app.yaml index 3e1d1c7..7fd1d04 100644 --- a/app.yaml +++ b/app.yaml @@ -1,31 +1,31 @@ application: flickrforbusypeople -version: 2.1 +version: 3 runtime: python api_version: 1 skip_files: - ^(.*/)?app\.yaml - ^(.*/)?app\.yml - ^(.*/)?index\.yaml - ^(.*/)?index\.yml - ^(.*/)?#.*# - ^...
straup/gae-flickrforbusypeople
efe393302e221ef47f826d8e07f1d4c9ba01e088
more fussing
diff --git a/README b/README index e1f5467..cfe0731 100644 --- a/README +++ b/README @@ -1,54 +1,55 @@ This is the source code that runs Flickr For Busy People (ffbp). ffbp is a Flickr API (web) application that runs on the Google AppEngine (GAE) platform: http://flickrforbusypeople.appspot.com It asks the Flic...
straup/gae-flickrforbusypeople
9ae69d4bcbf800d261bb44bf62935658e997ca73
fussing
diff --git a/README b/README index 45f1e02..e1f5467 100644 --- a/README +++ b/README @@ -1,54 +1,54 @@ This is the source code that runs Flickr For Busy People (ffbp). ffbp is a Flickr API (web) application that runs on the Google AppEngine (GAE) platform: http://flickrforbusypeople.appspot.com It asks the Flic...
straup/gae-flickrforbusypeople
8de3eee55a04439506dcb9b9ea70fce5c51172f2
notes about mobile
diff --git a/README b/README index 16c91d1..45f1e02 100644 --- a/README +++ b/README @@ -1,47 +1,54 @@ This is the source code that runs Flickr For Busy People (ffbp). ffbp is a Flickr API (web) application that runs on the Google AppEngine (GAE) platform: http://flickrforbusypeople.appspot.com It asks the Flic...
straup/gae-flickrforbusypeople
3fa6d8174665996e4160717d1a27c02913c4fc0d
remove some unused code; comments
diff --git a/ffbp/App/__init__.py b/ffbp/App/__init__.py index d34acc5..79ac0d2 100644 --- a/ffbp/App/__init__.py +++ b/ffbp/App/__init__.py @@ -1,175 +1,170 @@ import ffbp import ffbp.Settings from google.appengine.api import memcache import time import logging import md5 class Main (ffbp.Request) : ...
straup/gae-flickrforbusypeople
f8ff7f212cd8a548c99256d5056f0a3efb0f0544
stuff about bundled gae-*App packages
diff --git a/README b/README index 5cbc719..16c91d1 100644 --- a/README +++ b/README @@ -1,42 +1,47 @@ -This is the source code that runs Flickr For Busy Peopl (ffbp): - -ffbp is a Flickr API (web) application that runs on the Google AppEngine (GAE) -platform: +This is the source code that runs Flickr For Busy People (...
straup/gae-flickrforbusypeople
e61f9d7c10aaba18b41dd6489b4e0f9f3bd5df01
fussing
diff --git a/README b/README index 51e49e1..5cbc719 100644 --- a/README +++ b/README @@ -1,30 +1,42 @@ -This is the source code that runs flickrforbusypeople.appspot.com (ffbp). +This is the source code that runs Flickr For Busy Peopl (ffbp): -ffbp is a Flickr API application that runs on the Google AppEngine (GAE) -...
straup/gae-flickrforbusypeople
e1216bbe31abd98ad7421ca4a6bd89a10cc72975
margin-left: 15%
diff --git a/css/main.css b/css/main.css index 411b15e..3c1b200 100644 --- a/css/main.css +++ b/css/main.css @@ -1,246 +1,246 @@ /* elements */ body { font-family:sans-serif; font-size:11pt; color:darkslategrey; margin-top:25px; margin-left:0; margin-right:0; ...
straup/gae-flickrforbusypeople
42f6766761bffb867d3b5fbf3f09bef306974ba2
DTRT if user is null when fetching buddyicons
diff --git a/ffbp/App/__init__.py b/ffbp/App/__init__.py index db2156c..d34acc5 100644 --- a/ffbp/App/__init__.py +++ b/ffbp/App/__init__.py @@ -1,172 +1,175 @@ import ffbp import ffbp.Settings from google.appengine.api import memcache import time import logging import md5 class Main (ffbp.Request) : ...
straup/gae-flickrforbusypeople
301bc43fdac420856f5b9aa2d70f5d153f3b86f2
css for submit buttons
diff --git a/javascript/ffbp.js b/javascript/ffbp.js index 5166440..3a0ee26 100644 --- a/javascript/ffbp.js +++ b/javascript/ffbp.js @@ -1,228 +1,230 @@ if (! info){ var info = {}; } if (! info.aaronland){ info.aaronland = {}; } if (! info.aaronland.ffbp){ info.aaronland.ffbp = {}; } info.aa...
straup/gae-flickrforbusypeople
30dd11bdcbf4f6cb0068f66492c59171b700584d
css for submit buttons
diff --git a/css/main.css b/css/main.css index 08a3a0d..411b15e 100644 --- a/css/main.css +++ b/css/main.css @@ -1,236 +1,246 @@ /* elements */ body { font-family:sans-serif; font-size:11pt; color:darkslategrey; margin-top:25px; margin-left:0; margin-right:0; ...
straup/gae-flickrforbusypeople
a38b49b1ac0901399e6e57b588f171933909d031
big sloppy commit before I go to work
diff --git a/css/main.css b/css/main.css index 3dca955..08a3a0d 100644 --- a/css/main.css +++ b/css/main.css @@ -1,243 +1,236 @@ /* elements */ body { font-family:sans-serif; font-size:11pt; color:darkslategrey; margin-top:25px; margin-left:0; margin-right:0; ...
straup/gae-flickrforbusypeople
cc5b2c3ef175bbe357fedc0a47759f8f0dd7591d
throw it to the wind, see what happens
diff --git a/css/main.css b/css/main.css index 1ba0f5d..3dca955 100644 --- a/css/main.css +++ b/css/main.css @@ -1,237 +1,243 @@ /* elements */ body { font-family:sans-serif; font-size:11pt; color:darkslategrey; margin-top:25px; margin-left:0; margin-right:0; ...
straup/gae-flickrforbusypeople
2e7368ce025b5485c9cbfb2acb66482828b671ed
inline stuff works, basically
diff --git a/javascript/ffbp.js b/javascript/ffbp.js index 1cb32b6..5166440 100644 --- a/javascript/ffbp.js +++ b/javascript/ffbp.js @@ -1,133 +1,228 @@ if (! info){ var info = {}; } if (! info.aaronland){ info.aaronland = {}; } if (! info.aaronland.ffbp){ info.aaronland.ffbp = {}; } info.aa...
straup/gae-flickrforbusypeople
7886414184e92ed7b29eea18d7a4c5006c0e353e
start work on mobile
diff --git a/app.yaml b/app.yaml index c3453a8..3dddbeb 100644 --- a/app.yaml +++ b/app.yaml @@ -1,31 +1,31 @@ application: flickrforbusypeople -version: 1 +version: 2 runtime: python api_version: 1 skip_files: - ^(.*/)?app\.yaml - ^(.*/)?app\.yml - ^(.*/)?index\.yaml - ^(.*/)?index\.yml - ^(.*/)?#.*# - ^(....
straup/gae-flickrforbusypeople
9669e4f5b00c51d7cef9b95833fd2db4612e4253
cast iconserver
diff --git a/ffbp/App/__init__.py b/ffbp/App/__init__.py index 093f543..f5b8b85 100644 --- a/ffbp/App/__init__.py +++ b/ffbp/App/__init__.py @@ -1,166 +1,166 @@ import ffbp import ffbp.Settings from google.appengine.api import memcache import time import logging import md5 class Main (ffbp.Request) : ...
straup/gae-flickrforbusypeople
a9fa5e534ea1d861c9ff7c0872d5772f3311efda
tweaks and bug fixes
diff --git a/css/main.css b/css/main.css index 70582c2..6cf0126 100644 --- a/css/main.css +++ b/css/main.css @@ -1,556 +1,237 @@ /* elements */ body { font-family:sans-serif; font-size:11pt; color:darkslategrey; margin-top:25px; margin-left:0; margin-right:0; ...
straup/gae-flickrforbusypeople
5dc4377feca8d5d1217f94b70c475bd351314be5
chunked out all the css; moved js around
diff --git a/css/mobile.css b/css/mobile.css new file mode 100644 index 0000000..5e8fa2a --- /dev/null +++ b/css/mobile.css @@ -0,0 +1,232 @@ +/* elements */ + +body { + font-family:sans-serif; + font-size:11pt; + color:darkslategrey; + margin-top:25px; + margin-left:0; + margin-rig...
straup/gae-flickrforbusypeople
6598919a44d7bf6ce8892a34283041f9b1be0d57
big sloppy commit; implemented most of george's design
diff --git a/css/main.css b/css/main.css index e4fbaab..70582c2 100644 --- a/css/main.css +++ b/css/main.css @@ -1,555 +1,556 @@ /* elements */ body { font-family:sans-serif; font-size:11pt; color:darkslategrey; margin-top:25px; margin-left:0; margin-right:0; ...
straup/gae-flickrforbusypeople
9ad5e5825ba40910c0e8844b7b1b1b66ff539746
start on side design
diff --git a/css/main.css b/css/main.css index 4940038..e4fbaab 100644 --- a/css/main.css +++ b/css/main.css @@ -1,555 +1,555 @@ /* elements */ body { font-family:sans-serif; font-size:11pt; color:darkslategrey; margin-top:25px; margin-left:0; margin-right:0; ...
straup/gae-flickrforbusypeople
70ee8f83be10a99a4d277f65f1b325f668c93d15
label elements
diff --git a/templates/settings.html b/templates/settings.html index 7bbeda2..9ff2d2d 100644 --- a/templates/settings.html +++ b/templates/settings.html @@ -1,35 +1,35 @@ {% include "inc_head.html" %} {% if error %} <p> {% ifequal error 'invalid_crumb' %} Hrm. Your session seems to have expired. {% endifequal...