repo
string
commit
string
message
string
diff
string
arthur-debert/google-code-issues-migrator
05b26444e498c2da0890d96be1d040e2fe2f2282
Remove number from title of issues posting to Github (sorta redundant given Github's own issue numbering + the already included link to the original google code issue.
diff --git a/migrateissues.py b/migrateissues.py index f8fd794..aa9d221 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,158 +1,158 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from bs4 import BeautifulSoup options = N...
arthur-debert/google-code-issues-migrator
6227c3e57badf86e3a6970e180fbf9f22bf0c66c
Turn down Github requests/sec to 0.75 as 0.9 still hit API rate limit eventually.
diff --git a/migrateissues.py b/migrateissues.py index 8e42620..f8fd794 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,158 +1,158 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from bs4 import BeautifulSoup options = N...
arthur-debert/google-code-issues-migrator
721d54cfcf47bdf332264fa792431bd883a7da8a
Fix comment body's top line italicization.
diff --git a/migrateissues.py b/migrateissues.py index 823191a..8e42620 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,158 +1,158 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from bs4 import BeautifulSoup options = N...
arthur-debert/google-code-issues-migrator
7a49fffd82795151cb836b506497131e615abc65
Remove unneeded 'global options'.
diff --git a/migrateissues.py b/migrateissues.py index 3296cfd..823191a 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,159 +1,158 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from bs4 import BeautifulSoup options = N...
arthur-debert/google-code-issues-migrator
f17ab9b0e556524b5d53858cd95f1cacf1d73b91
Set Github requests/sec to 0.90 to try and avoid API rate limit error.
diff --git a/migrateissues.py b/migrateissues.py index 113d0fa..3296cfd 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,159 +1,159 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from bs4 import BeautifulSoup options = N...
arthur-debert/google-code-issues-migrator
f309a4b10f0ba6b2fe6dfd6471c135989c36a81c
Removed <pre> around issue text and comment body. Using newlines instead of <br/>. Fix comments so they are actually found in google code issues.
diff --git a/migrateissues.py b/migrateissues.py index 204887e..113d0fa 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,160 +1,159 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from bs4 import BeautifulSoup options = N...
arthur-debert/google-code-issues-migrator
2e518362332dc00344ff83cd1cc6db2ff2677e0b
Switched to BeautifulSoup4. Improved comment formatting.
diff --git a/migrateissues.py b/migrateissues.py index 2344c53..204887e 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,159 +1,160 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github -from BeautifulSoup import BeautifulSoup +fro...
arthur-debert/google-code-issues-migrator
a88d001e3925ab58820d5f5e167c27da9c3ab720
Style edits per PEP standards/style lint
diff --git a/migrateissues.py b/migrateissues.py index 0dbea8b..2344c53 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,156 +1,159 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
4c1103548cb1174bdb2095d94e0cee275dafdc8c
PEPifying style
diff --git a/migrateissues.py b/migrateissues.py index b97b913..0dbea8b 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,155 +1,156 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
213b48612ec08d96784aae652564bac247d3479f
Fix typo.
diff --git a/migrateissues.py b/migrateissues.py index b97b913..c607210 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,155 +1,155 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
6a43efdb99b510d70e30a91ce5b8852a10d36171
Just include summary as part of title for new github issue.
diff --git a/migrateissues.py b/migrateissues.py index ac515e1..6b09097 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,200 +1,200 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
7295d2d9911e69bb51163ec326e78e8a40c62e3d
Grab description and comments as UTF-8 and replace unrecognized characters. This fixes errors grabbing descriptions and comments when non-ascii characters are parsed.
diff --git a/migrateissues.py b/migrateissues.py index 7740156..ac515e1 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,198 +1,200 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
54c5f54f67f173827dc67ab3001f35f201984c7b
Add more statuses for closed issues to set github issue to closed.
diff --git a/migrateissues.py b/migrateissues.py index c96bb1a..7740156 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,198 +1,198 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
3315331d06ac8675d6f0efa34348894cb2714ca9
Add regex for checking statuses of open issues.
diff --git a/migrateissues.py b/migrateissues.py index 1cc5373..c96bb1a 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,194 +1,198 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
3078c5868fea402140bd090af61adc3d5ff39128
Save labels as unicode strings.
diff --git a/migrateissues.py b/migrateissues.py index 71144a5..1cc5373 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,194 +1,194 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
85eb2009d1020a5065f8a3eccac584e6ad029cbe
Get the status of an issue.
diff --git a/migrateissues.py b/migrateissues.py index 52464f5..71144a5 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,176 +1,194 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
14bd5a4c894b7df72adc167979ba685744283427
Ignore all comments that say '(No comment was entered for this change.)'.
diff --git a/migrateissues.py b/migrateissues.py index b139e71..52464f5 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,175 +1,176 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
0572df37bcaf157ec821ae9fc2dc0ecc8d08019f
Extract milestones as well as labels.
diff --git a/migrateissues.py b/migrateissues.py index e853ed2..b139e71 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,169 +1,175 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
c9fede501e2d3823aa12d25e8d3c898dae016cca
Get labels from issues.
diff --git a/migrateissues.py b/migrateissues.py index dd6e531..e853ed2 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,161 +1,169 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
223d645f5c8d6f342927ac2c5e6f714401799cdb
Render contents of description and comments. Prevents empty comments and keeps certain elements, like links.
diff --git a/migrateissues.py b/migrateissues.py index 8117ede..dd6e531 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,161 +1,161 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
56202d75111635ee64ff734c349a767343b02f9c
Use more accurate time for description and comments.
diff --git a/migrateissues.py b/migrateissues.py index b561c7c..8117ede 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,161 +1,161 @@ import csv import logging import datetime import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
9572dd1f37d78993cace80b83efb504f92427c19
Fine tune queries to nodes from parser.
diff --git a/migrateissues.py b/migrateissues.py index b97b913..b561c7c 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,155 +1,161 @@ import csv import logging import datetime +import re from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import Beautif...
arthur-debert/google-code-issues-migrator
b2557be6311ef24eedf43c1402317bb6271d594c
use the gdata issues api, migrate labels, revamp command line options
diff --git a/migrate-issues b/migrate-issues index 5ac07cf..d5dae6b 100755 --- a/migrate-issues +++ b/migrate-issues @@ -1,154 +1,118 @@ #!/usr/bin/env python -import csv +import optparse +import sys +import re import logging import datetime -from StringIO import StringIO +import dateutil.parser -import httplib2...
arthur-debert/google-code-issues-migrator
5970351335f7f468dca18cb0584b160ce2bbd933
whitespace cleanup
diff --git a/migrate-issues b/migrate-issues index 795b3fa..5ac07cf 100755 --- a/migrate-issues +++ b/migrate-issues @@ -1,156 +1,154 @@ -#! /usr/bin/env python +#!/usr/bin/env python import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github fro...
arthur-debert/google-code-issues-migrator
09ec21c009c9a9bf7c6f491ff6f5e0bbc015a195
make the script executable
diff --git a/migrateissues.py b/migrateissues.py old mode 100644 new mode 100755 index 9f19a38..795b3fa --- a/migrateissues.py +++ b/migrateissues.py @@ -1,154 +1,156 @@ +#! /usr/bin/env python + import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import G...
arthur-debert/google-code-issues-migrator
49c391e30d6677dddbc87890952f0186452e84b4
google code issue comments are contained in divs now
diff --git a/migrateissues.py b/migrateissues.py index 6da7a11..9f19a38 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,154 +1,154 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
20214ea41c5be2ae0ef86abb9e2f291ea98d66e0
set default logging level to INFO
diff --git a/migrateissues.py b/migrateissues.py index 48743dc..6da7a11 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,154 +1,154 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
14713e0ed21f4c6dc32c30aeca21cad8a4c58eb3
slow down api requests to one every two seconds
diff --git a/migrateissues.py b/migrateissues.py index db5b058..48743dc 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,154 +1,154 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
8a0c52cafbad441829f2b0ff9241506c197483d2
no need to declare options a global as we're not in a function
diff --git a/migrateissues.py b/migrateissues.py index 28a7d22..db5b058 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,155 +1,154 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
306500dbd0fb29444dbc26b8a20150eb44056ace
don't tack the google issue id onto the github issue title, get rid of trailing space
diff --git a/migrateissues.py b/migrateissues.py index 2e3f5fd..28a7d22 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,155 +1,155 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
c019d9baf1419e156d6d4e2c9f6d9709a7a2bbf9
treat 'Done' and 'Duplicate' statuses as closed
diff --git a/migrateissues.py b/migrateissues.py index 5f932dc..2e3f5fd 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,155 +1,155 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
c9e4da781fec586c0d5f01d4a737682856b59717
make sure we stay under the one request per second cap
diff --git a/migrateissues.py b/migrateissues.py index c2f988b..5f932dc 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,155 +1,155 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
8727855689db38eac59ca123b59002cfe6c43365
add ending newline
diff --git a/migrateissues.py b/migrateissues.py index b97b913..c2f988b 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,155 +1,155 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
7d50f94f7acfdffa90f697a33ab98af0a662534f
Fixed issues
diff --git a/migrateissues.py b/migrateissues.py index b98bf5a..b97b913 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,146 +1,155 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
77809a13ad992c031e11b18f2641f124d60fd91d
Fixed import of comments with empty bodies ( as in google code issue status changes).
diff --git a/migrateissues.py b/migrateissues.py index fd9acd7..b98bf5a 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,145 +1,146 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
2a8b5ba86835ae2566a8af2aec11dbd404595775
made documentation more explanatory
diff --git a/migrateissues.py b/migrateissues.py index 7a97f94..fd9acd7 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -1,145 +1,145 @@ import csv import logging import datetime from StringIO import StringIO import httplib2 from github2.client import Github from BeautifulSoup import BeautifulSoup o...
arthur-debert/google-code-issues-migrator
63c534f015629a9f792849240ea13e950715acbb
Improved usage message
diff --git a/README.mkd b/README.mkd index 2372e95..4a033aa 100644 --- a/README.mkd +++ b/README.mkd @@ -1,11 +1,22 @@ This is a simple script to move issues from google code to github. Some liberties have been taken (as we cannot, for example, know which google user corresponds to other user on github). But most i...
arthur-debert/google-code-issues-migrator
df935bed0c8b13987efd444e9e19c124599b520a
initial checkin
diff --git a/README.mkd b/README.mkd new file mode 100644 index 0000000..2372e95 --- /dev/null +++ b/README.mkd @@ -0,0 +1,11 @@ +This is a simple script to move issues from google code to github. + +Some liberties have been taken (as we cannot, for example, know which google user corresponds to other user on github). ...
clayton/phxrails-201006
81a0cc8dca30f0be510a4440b332f9644afc779c
More readable
diff --git a/code/after/rails/active.rb b/code/after/rails/active.rb index 680999a..6091d16 100644 --- a/code/after/rails/active.rb +++ b/code/after/rails/active.rb @@ -1,14 +1,14 @@ # FLOG # ---------------------- -# 9.0: flog total -# 9.0: flog/method average +# 15.1: flog total +# 15.1: flog/method average # -# 9...
clayton/phxrails-201006
aec74b4e1797588aeba4267363a32daf5aa828da
PDF of presentation
diff --git a/docs/phxrails-201006.pdf b/docs/phxrails-201006.pdf new file mode 100644 index 0000000..7b637d1 Binary files /dev/null and b/docs/phxrails-201006.pdf differ
clayton/phxrails-201006
7a64ff9d41049e8f88b67db129dff3c0bcd28a90
Finalized Keynote Presentation
diff --git a/docs/phxrails-201006.key b/docs/phxrails-201006.key index bffe901..338af51 100644 Binary files a/docs/phxrails-201006.key and b/docs/phxrails-201006.key differ
clayton/phxrails-201006
7eb3ca676892a27d4f3dabbb1b1ce15bc0033944
Keynote Presentation
diff --git a/docs/phxrails-201006.key b/docs/phxrails-201006.key new file mode 100644 index 0000000..bffe901 Binary files /dev/null and b/docs/phxrails-201006.key differ
clayton/phxrails-201006
d30d2167d79abb1fb4d5319f50e748f1ba09d7a2
Before and after of a fat rails controller
diff --git a/code/after/rails/statuses_controller.rb b/code/after/rails/statuses_controller.rb new file mode 100644 index 0000000..4587f86 --- /dev/null +++ b/code/after/rails/statuses_controller.rb @@ -0,0 +1,40 @@ +# FLOG +# ----------------- +# 16.1: flog total +# 16.1: flog/method average +# +# 16.1: main#update + ...
clayton/phxrails-201006
c3ecc18a649a62134272758656a391a04f61a468
Even more view awesomness
diff --git a/code/after/rails/more_view_logic.rb b/code/after/rails/more_view_logic.rb new file mode 100644 index 0000000..3e28376 --- /dev/null +++ b/code/after/rails/more_view_logic.rb @@ -0,0 +1,42 @@ +case org_type.name +when 'A' + if public_link == false + html << sidebar_link(newsletter.get_messages_title(Org...
clayton/phxrails-201006
ce2484196709ff8000ba92932518dbfa6d4642a9
Before and after rails view logic
diff --git a/code/after/rails/view_logic.rb b/code/after/rails/view_logic.rb new file mode 100644 index 0000000..b44cbdb --- /dev/null +++ b/code/after/rails/view_logic.rb @@ -0,0 +1,11 @@ +# app/views/products/index.html.erb +display_remaining_items(@featured_product) + +# app/helpers/products_helper.rb +def display_r...
clayton/phxrails-201006
41f5f9cd9dc8f36dbf5f45f51c17085c766e8e78
Before and After rails model method
diff --git a/code/after/rails/active.rb b/code/after/rails/active.rb new file mode 100644 index 0000000..680999a --- /dev/null +++ b/code/after/rails/active.rb @@ -0,0 +1,14 @@ +# FLOG +# ---------------------- +# 9.0: flog total +# 9.0: flog/method average +# +# 9.0: main#active? + +def active? + now = Time.now ...
clayton/phxrails-201006
0c5d7d0d453e5b2cc9db99243600b26361be5909
Maybe we went too far
diff --git a/after/dog/dog.rb b/after/dog/dog.rb index 5739e5b..48e1f5f 100644 --- a/after/dog/dog.rb +++ b/after/dog/dog.rb @@ -1,32 +1,32 @@ class Dog attr_accessor :size, :bark, :guarding, :trained def initialize(options) self.size = options[:size] self.bark = options[:bark] self.guar...
clayton/phxrails-201006
28d3f79a69e3ae7e378627e106d30c38640a540c
More Improvement?
diff --git a/after/dog/dog.rb b/after/dog/dog.rb index 2e3ff1e..5739e5b 100644 --- a/after/dog/dog.rb +++ b/after/dog/dog.rb @@ -1,31 +1,32 @@ class Dog attr_accessor :size, :bark, :guarding, :trained def initialize(options) self.size = options[:size] self.bark = options[:bark] self.guar...
clayton/phxrails-201006
b0a2d29580e6aa074da0c9834662195875f6f447
Explicitly require the correct Dog class
diff --git a/before/dog/dog_spec.rb b/before/dog/dog_spec.rb index c2f5f2c..d8ed5d8 100644 --- a/before/dog/dog_spec.rb +++ b/before/dog/dog_spec.rb @@ -1,35 +1,35 @@ -require File.join(File.dirname(File.expand_path(__FILE__)),"..", "..", "spec_helper.rb") -require 'dog' +require File.join(File.dirname(File.expand_path...
clayton/phxrails-201006
82ed251ac3f413e4ee33c1351b885e9b918ee4b2
Improved Dog Class
diff --git a/after/dog/dog.rb b/after/dog/dog.rb new file mode 100644 index 0000000..2e3ff1e --- /dev/null +++ b/after/dog/dog.rb @@ -0,0 +1,31 @@ +class Dog + attr_accessor :size, :bark, :guarding, :trained + + def initialize(options) + self.size = options[:size] + self.bark = options[:bark] + self....
clayton/phxrails-201006
d53259f722ade2cafe4933fde8999ee8a063e9f5
Before: Dog class
diff --git a/before/dog/dog.rb b/before/dog/dog.rb new file mode 100644 index 0000000..93c8c5c --- /dev/null +++ b/before/dog/dog.rb @@ -0,0 +1,45 @@ +class Dog + attr_accessor :size, :bark, :guarding, :trained + + def initialize(options) + self.size = options[:size] + self.bark = options[:bark] + se...
clayton/phxrails-201006
6cd80edb4d4726632caac5ecdb625111f8333e30
Spec Helper
diff --git a/spec_helper.rb b/spec_helper.rb new file mode 100644 index 0000000..53ae29b --- /dev/null +++ b/spec_helper.rb @@ -0,0 +1,2 @@ +require 'rubygems' +require 'spec' \ No newline at end of file
fberg/xmonad-config
f7089ab5dc54ba93e2f89b25068c2ca5a04c1840
added screenshot
diff --git a/screenshots/2010-09-27_21-58-30_2720x1024_scrot.png b/screenshots/2010-09-27_21-58-30_2720x1024_scrot.png new file mode 100644 index 0000000..cb965ba Binary files /dev/null and b/screenshots/2010-09-27_21-58-30_2720x1024_scrot.png differ
fberg/xmonad-config
66c7c25abbe9cecf5a79890dcb81f1a333eda2cd
fixed LICENSE and README
diff --git a/LICENSE b/LICENSE index 94a9ed0..e147d42 100644 --- a/LICENSE +++ b/LICENSE @@ -1,674 +1,26 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 +Copyright 2010 Franz Berger. All rights reserved. - Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf...
ahmednuaman/AS3
78e7ed0f6ec26c0b25b83a30faf2b0162b068d82
changed to app event
diff --git a/com/firestartermedia/lib/as3/events/SpriteEvent.as b/com/firestartermedia/lib/as3/events/AppEvent.as similarity index 66% rename from com/firestartermedia/lib/as3/events/SpriteEvent.as rename to com/firestartermedia/lib/as3/events/AppEvent.as index 69438ff..3b8c6c6 100644 --- a/com/firestartermedia/lib/as3...
ahmednuaman/AS3
d935d79bffe469bf5e0f9afa2c743280ee68c583
moved SpriteEvent
diff --git a/com/firestartermedia/lib/puremvc/events/SpriteEvent.as b/com/firestartermedia/lib/as3/events/SpriteEvent.as similarity index 93% rename from com/firestartermedia/lib/puremvc/events/SpriteEvent.as rename to com/firestartermedia/lib/as3/events/SpriteEvent.as index baf8ffb..69438ff 100644 --- a/com/firestarte...
ahmednuaman/AS3
316fb30e51434dd34731405cbcbf511f3488221d
added gradient and shiz
diff --git a/com/firestartermedia/lib/as3/display/shape/Rectangle.as b/com/firestartermedia/lib/as3/display/shape/Rectangle.as index 746ae9f..c005a62 100644 --- a/com/firestartermedia/lib/as3/display/shape/Rectangle.as +++ b/com/firestartermedia/lib/as3/display/shape/Rectangle.as @@ -1,32 +1,58 @@ package com.firestar...
ahmednuaman/AS3
4cd33a0a60f9317be78b646c8900046a744dbdd4
added nice Rectangle class
diff --git a/com/firestartermedia/lib/as3/display/shape/Rectangle.as b/com/firestartermedia/lib/as3/display/shape/Rectangle.as new file mode 100644 index 0000000..746ae9f --- /dev/null +++ b/com/firestartermedia/lib/as3/display/shape/Rectangle.as @@ -0,0 +1,32 @@ +package com.firestartermedia.lib.as3.display.shape +{ +...
ahmednuaman/AS3
6c4ba085cdae0418afac3731f0b2c6e1b46ae8df
clearing that sheeet
diff --git a/com/firestartermedia/lib/as3/display/shape/Polygon.as b/com/firestartermedia/lib/as3/display/shape/Polygon.as index 89e4f54..4381a39 100644 --- a/com/firestartermedia/lib/as3/display/shape/Polygon.as +++ b/com/firestartermedia/lib/as3/display/shape/Polygon.as @@ -1,52 +1,53 @@ package com.firestartermedia...
ahmednuaman/AS3
b1396975edebd4c8a604ab21ef7f20c89706e8e7
introducing a track event
diff --git a/com/firestartermedia/lib/puremvc/display/Sprite.as b/com/firestartermedia/lib/puremvc/display/Sprite.as index 827d7b3..f2e1cb7 100644 --- a/com/firestartermedia/lib/puremvc/display/Sprite.as +++ b/com/firestartermedia/lib/puremvc/display/Sprite.as @@ -1,126 +1,109 @@ /** - * @author Ahmed Nuaman (http:/...
ahmednuaman/AS3
2de3180ff42e0c706adeb53c279ca019be643c28
added search
diff --git a/com/firestartermedia/lib/as3/data/gdata/YouTubeGDataService.as b/com/firestartermedia/lib/as3/data/gdata/YouTubeGDataService.as index dfffe46..b7f553d 100644 --- a/com/firestartermedia/lib/as3/data/gdata/YouTubeGDataService.as +++ b/com/firestartermedia/lib/as3/data/gdata/YouTubeGDataService.as @@ -1,213 +...
ahmednuaman/AS3
704e01340259050e10ef4d12d272e74a9c154b6c
fixed issue with duration
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index 5a2df67..54f2ede 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,283 +1,279 @@ /*...
ahmednuaman/AS3
eeba86212c65f37362b1da8bbe13b8d93aa48546
added better catch for accessing sound data
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index b8a7276..5a2df67 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,272 +1,283 @@ /*...
ahmednuaman/AS3
7f052a1a1107fa6e49ff99e8cc4fd628db651cd0
added unique sorting
diff --git a/com/firestartermedia/lib/as3/utils/ArrayUtil.as b/com/firestartermedia/lib/as3/utils/ArrayUtil.as index 7873abd..7ad225a 100644 --- a/com/firestartermedia/lib/as3/utils/ArrayUtil.as +++ b/com/firestartermedia/lib/as3/utils/ArrayUtil.as @@ -1,77 +1,97 @@ /** * @author Ahmed Nuaman (http://www.ahmednuam...
ahmednuaman/AS3
9f82cf67d22d34fed6b123cdcfcca287ed981a0a
made some updates
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index faf74ac..b8a7276 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,268 +1,272 @@ /*...
ahmednuaman/AS3
3bb90c6a4d507cde7fa564e0153cc067fa5fe7f5
allowed setting of x, y, width and height
diff --git a/com/firestartermedia/lib/as3/utils/BitmapUtil.as b/com/firestartermedia/lib/as3/utils/BitmapUtil.as index 66ed64c..5a28f39 100644 --- a/com/firestartermedia/lib/as3/utils/BitmapUtil.as +++ b/com/firestartermedia/lib/as3/utils/BitmapUtil.as @@ -1,43 +1,46 @@ /** * @author Ahmed Nuaman (http://www.ahmed...
ahmednuaman/AS3
70de4c7dd3f1ae973b2f18d3039837e1e94527d9
opened removechildren to other containers, such as object3d ones
diff --git a/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as b/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as index dffc4cc..dd02f2f 100644 --- a/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as +++ b/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as @@ -1,147 +1,147 @@ /** * @author ...
ahmednuaman/AS3
2f7bfe99e80aa2e3808a29c4384b6ba24df87c9e
added nice truncation util
diff --git a/com/firestartermedia/lib/as3/utils/StringUtil.as b/com/firestartermedia/lib/as3/utils/StringUtil.as index 98c3a44..f61c93a 100644 --- a/com/firestartermedia/lib/as3/utils/StringUtil.as +++ b/com/firestartermedia/lib/as3/utils/StringUtil.as @@ -1,47 +1,52 @@ /** * @author Ahmed Nuaman (http://www.ahmed...
ahmednuaman/AS3
34b0613a87fb78aa8eb03333ba5bda39f9ef1c31
added random entry util where it gets a random child in an array
diff --git a/com/firestartermedia/lib/as3/utils/ArrayUtil.as b/com/firestartermedia/lib/as3/utils/ArrayUtil.as index 4dc679a..7873abd 100644 --- a/com/firestartermedia/lib/as3/utils/ArrayUtil.as +++ b/com/firestartermedia/lib/as3/utils/ArrayUtil.as @@ -1,70 +1,77 @@ /** * @author Ahmed Nuaman (http://www.ahmednuam...
ahmednuaman/AS3
6ef9b2761595ce573ae3daf762473b819f2c698c
added a default to body
diff --git a/com/firestartermedia/lib/puremvc/patterns/Facade.as b/com/firestartermedia/lib/puremvc/patterns/Facade.as index d04f73b..647b32c 100644 --- a/com/firestartermedia/lib/puremvc/patterns/Facade.as +++ b/com/firestartermedia/lib/puremvc/patterns/Facade.as @@ -1,57 +1,57 @@ /** * @author Ahmed Nuaman (http...
ahmednuaman/AS3
e319e73bf51ad327598ee665975f9884e128501c
not using view anymore, it was a stupid idea
diff --git a/com/firestartermedia/lib/puremvc/patterns/ApplicationMediator.as b/com/firestartermedia/lib/puremvc/patterns/ApplicationMediator.as index d52f35f..fb59bea 100644 --- a/com/firestartermedia/lib/puremvc/patterns/ApplicationMediator.as +++ b/com/firestartermedia/lib/puremvc/patterns/ApplicationMediator.as @@ ...
ahmednuaman/AS3
9f310cb2c5622e88778662251482c9432308b3e1
changed from xml to json
diff --git a/com/firestartermedia/lib/as3/data/gdata/YouTubeGDataService.as b/com/firestartermedia/lib/as3/data/gdata/YouTubeGDataService.as index d9b8223..dfffe46 100644 --- a/com/firestartermedia/lib/as3/data/gdata/YouTubeGDataService.as +++ b/com/firestartermedia/lib/as3/data/gdata/YouTubeGDataService.as @@ -1,213 +...
ahmednuaman/AS3
4a54ccbb9539a463363da9b4181c621fd82f0049
using my string util now
diff --git a/com/firestartermedia/lib/as3/utils/YouTubeUtil.as b/com/firestartermedia/lib/as3/utils/YouTubeUtil.as index ac3198f..ebd7fb3 100644 --- a/com/firestartermedia/lib/as3/utils/YouTubeUtil.as +++ b/com/firestartermedia/lib/as3/utils/YouTubeUtil.as @@ -1,42 +1,38 @@ /** * @author Ahmed Nuaman (http://www.a...
ahmednuaman/AS3
204356b5f49ff16dbe5b9e0026584de03a228c1b
forgot to cast a return type, woops!
diff --git a/com/firestartermedia/lib/as3/utils/StringUtil.as b/com/firestartermedia/lib/as3/utils/StringUtil.as index 64a846b..98c3a44 100644 --- a/com/firestartermedia/lib/as3/utils/StringUtil.as +++ b/com/firestartermedia/lib/as3/utils/StringUtil.as @@ -1,47 +1,47 @@ /** * @author Ahmed Nuaman (http://www.ahmed...
ahmednuaman/AS3
0cc7bcbeff9831731c3358f53409d8f4b3f43def
added trim func
diff --git a/com/firestartermedia/lib/as3/utils/StringUtil.as b/com/firestartermedia/lib/as3/utils/StringUtil.as index 3f07b83..64a846b 100644 --- a/com/firestartermedia/lib/as3/utils/StringUtil.as +++ b/com/firestartermedia/lib/as3/utils/StringUtil.as @@ -1,42 +1,47 @@ /** * @author Ahmed Nuaman (http://www.ahmed...
ahmednuaman/AS3
911ddb9f24fcf7f37a1c0eac4c39b68a994df6a9
added better auto/playing
diff --git a/com/firestartermedia/lib/as3/display/component/video/VideoPlayerChromless.as b/com/firestartermedia/lib/as3/display/component/video/VideoPlayerChromless.as index 09bba8e..29e1d66 100644 --- a/com/firestartermedia/lib/as3/display/component/video/VideoPlayerChromless.as +++ b/com/firestartermedia/lib/as3/dis...
ahmednuaman/AS3
5cf2923f02213ac6f1dbe7e228ba5690db43e668
added ability to loop the sound
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index 4814bf5..ff18726 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,262 +1,268 @@ /*...
ahmednuaman/AS3
b32ccd09bdd2c9dd77702710840b7a2774cfbf26
added ability to cue a video once the player has loaded
diff --git a/com/firestartermedia/lib/as3/display/component/video/YouTubePlayerAS3.as b/com/firestartermedia/lib/as3/display/component/video/YouTubePlayerAS3.as index d047bcf..248ed3b 100644 --- a/com/firestartermedia/lib/as3/display/component/video/YouTubePlayerAS3.as +++ b/com/firestartermedia/lib/as3/display/compone...
ahmednuaman/AS3
6b828f042b39b54269e39859197febc864f6c6ba
fixed autoplaying
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index d43bfc6..5ad1a76 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,251 +1,255 @@ /*...
ahmednuaman/AS3
c26901616910c1c1aa518491ed222a63642c38e1
added disconnect
diff --git a/com/firestartermedia/lib/as3/display/component/video/WebCam.as b/com/firestartermedia/lib/as3/display/component/video/WebCam.as index 2e4af13..596488e 100644 --- a/com/firestartermedia/lib/as3/display/component/video/WebCam.as +++ b/com/firestartermedia/lib/as3/display/component/video/WebCam.as @@ -1,261 +...
ahmednuaman/AS3
e0cd37e07e7d02bbc84f9146e6984ddac7e7ccc6
removed el trace
diff --git a/com/firestartermedia/lib/as3/display/component/video/VideoPlayerChromless.as b/com/firestartermedia/lib/as3/display/component/video/VideoPlayerChromless.as index 2a4e9e7..09bba8e 100644 --- a/com/firestartermedia/lib/as3/display/component/video/VideoPlayerChromless.as +++ b/com/firestartermedia/lib/as3/dis...
ahmednuaman/AS3
483f5d5d41ba921dabcb7ca6fc2e708049a2bd28
added new event
diff --git a/com/firestartermedia/lib/as3/display/component/video/WebCam.as b/com/firestartermedia/lib/as3/display/component/video/WebCam.as index 8495c64..2e4af13 100644 --- a/com/firestartermedia/lib/as3/display/component/video/WebCam.as +++ b/com/firestartermedia/lib/as3/display/component/video/WebCam.as @@ -1,253 +...
ahmednuaman/AS3
177d5fe6309e45bc76fa9fb8d1bc8da7dd8c51cc
fixed duplication of sound issue
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index ab17b21..d43bfc6 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,244 +1,251 @@ /*...
ahmednuaman/AS3
b69a524c756545fb60244c800d996c1abf2ca612
added autoplay into the constructor
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index 69459c1..ab17b21 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,242 +1,244 @@ /*...
ahmednuaman/AS3
48e9bfdde369bfc5d3882ded6d124294235861bd
moved listeners
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index 1fc60c8..69459c1 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,242 +1,242 @@ /*...
ahmednuaman/AS3
79a851599a4a1213b79beb3307128d4be9c38310
returning the scale
diff --git a/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as b/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as index 557f30a..dffc4cc 100644 --- a/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as +++ b/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as @@ -1,146 +1,147 @@ /** * @author ...
ahmednuaman/AS3
77ac2ccd5c3a1220d0e087de4a0036e29f2eaf2c
using weak listener
diff --git a/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as b/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as index bb831a4..557f30a 100644 --- a/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as +++ b/com/firestartermedia/lib/as3/utils/DisplayObjectUtil.as @@ -1,146 +1,146 @@ /** * @author ...
ahmednuaman/AS3
3f11325d48ea9114bca87af89238f5f9ccd32890
failed
diff --git a/com/firestartermedia/lib/as3/display/component/video/WebCam.as b/com/firestartermedia/lib/as3/display/component/video/WebCam.as index c555100..8495c64 100644 --- a/com/firestartermedia/lib/as3/display/component/video/WebCam.as +++ b/com/firestartermedia/lib/as3/display/component/video/WebCam.as @@ -1,253 +...
ahmednuaman/AS3
1d13c2f05ce7349549dcc45084777ac3495023b2
added better web cam fail detection
diff --git a/com/firestartermedia/lib/as3/display/component/video/WebCam.as b/com/firestartermedia/lib/as3/display/component/video/WebCam.as index 8495c64..c555100 100644 --- a/com/firestartermedia/lib/as3/display/component/video/WebCam.as +++ b/com/firestartermedia/lib/as3/display/component/video/WebCam.as @@ -1,253 +...
ahmednuaman/AS3
9668ce8c977c8c01ad966dda33be01926ab8f18f
changed for setting of display object container
diff --git a/com/firestartermedia/lib/puremvc/display/Sprite.as b/com/firestartermedia/lib/puremvc/display/Sprite.as index dcd3e03..158e856 100644 --- a/com/firestartermedia/lib/puremvc/display/Sprite.as +++ b/com/firestartermedia/lib/puremvc/display/Sprite.as @@ -1,125 +1,126 @@ /** * @author Ahmed Nuaman (http:/...
ahmednuaman/AS3
4db4e30ac8abc548ace17816d6bb4e63ec9298e9
fixed issue with remove children
diff --git a/com/firestartermedia/lib/puremvc/display/Sprite.as b/com/firestartermedia/lib/puremvc/display/Sprite.as index cef87bc..dcd3e03 100644 --- a/com/firestartermedia/lib/puremvc/display/Sprite.as +++ b/com/firestartermedia/lib/puremvc/display/Sprite.as @@ -1,125 +1,125 @@ /** * @author Ahmed Nuaman (http:/...
ahmednuaman/AS3
c8fc54566c707ede6ef776b3127f1ce588891f29
fixed the reflect issue
diff --git a/com/firestartermedia/lib/as3/display/component/video/WebCam.as b/com/firestartermedia/lib/as3/display/component/video/WebCam.as index a98de81..8495c64 100644 --- a/com/firestartermedia/lib/as3/display/component/video/WebCam.as +++ b/com/firestartermedia/lib/as3/display/component/video/WebCam.as @@ -1,247 +...
ahmednuaman/AS3
5fd15d616604f16b258782fd32744c0e2b09936f
added reflection
diff --git a/com/firestartermedia/lib/as3/display/component/video/WebCam.as b/com/firestartermedia/lib/as3/display/component/video/WebCam.as index 4bc426c..a98de81 100644 --- a/com/firestartermedia/lib/as3/display/component/video/WebCam.as +++ b/com/firestartermedia/lib/as3/display/component/video/WebCam.as @@ -1,236 +...
ahmednuaman/AS3
cc892ce1c4b65868a938781873532cc6e28325ba
added fallback for adding/removing mediators
diff --git a/com/firestartermedia/lib/puremvc/patterns/ApplicationMediator.as b/com/firestartermedia/lib/puremvc/patterns/ApplicationMediator.as index 56e571e..d52f35f 100644 --- a/com/firestartermedia/lib/puremvc/patterns/ApplicationMediator.as +++ b/com/firestartermedia/lib/puremvc/patterns/ApplicationMediator.as @@ ...
ahmednuaman/AS3
aead73f3fd6fdf94bb126837a01da1cb5327773b
added catch for closing the sound
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index aecea24..1fc60c8 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,238 +1,242 @@ /*...
ahmednuaman/AS3
698b0401549d91e952138ea50ab2917d6c9763ff
added ended event
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index d977db8..aecea24 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,229 +1,238 @@ /*...
ahmednuaman/AS3
e512104bcb73b516698956bcdc53026bfaa39fd0
sorted out sound stopping
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index 1b33c65..d977db8 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,231 +1,229 @@ /*...
ahmednuaman/AS3
26dc8b39309efdc70003236ce4256e33fc79a630
made some updated :)
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index 3237b17..1b33c65 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,225 +1,231 @@ /*...
ahmednuaman/AS3
81071c6bdf2320f143ffe82224fa715273074e7b
added seek and did a clean up
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index a335066..9dbe739 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,179 +1,211 @@ /*...
ahmednuaman/AS3
3ce31aea907fc279e66764b9ceecf260ccb15c7d
added stop
diff --git a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as index 2f1e72d..a335066 100644 --- a/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as +++ b/com/firestartermedia/lib/as3/sound/component/SoundPlayer.as @@ -1,174 +1,179 @@ /*...