repo
string
commit
string
message
string
diff
string
scrooloose/snipmate-snippets
e1e5f1994af92356f6072f6f56a78cf44e30960a
make the html/ifie default to testing for ie6
diff --git a/html/ifie.snippet b/html/ifie.snippet index 77d7c36..abb68f5 100644 --- a/html/ifie.snippet +++ b/html/ifie.snippet @@ -1 +1 @@ -<!--[if IE]>${1}<![endif]-->${2} +<!--[if IE ${1:6}]>${2}<![endif]-->${3}
scrooloose/snipmate-snippets
e63d5cf6402f72b66d98eed2e74125cf3e276160
Fix the rspec 'it' snippet
diff --git a/ruby-rspec/it.snippet b/ruby-rspec/it.snippet index cb67b78..9317a67 100644 --- a/ruby-rspec/it.snippet +++ b/ruby-rspec/it.snippet @@ -1 +1,3 @@ -it "<+does something+>"<+ do<++>+> +it '${1}' do + ${2} +end
scrooloose/snipmate-snippets
76a2469a37801ff67ba068b532c3b9a407054866
Add snippet for sinatra
diff --git a/sinatra/get.snippet b/sinatra/get.snippet new file mode 100644 index 0000000..08f3fd5 --- /dev/null +++ b/sinatra/get.snippet @@ -0,0 +1,3 @@ +get '${1:/}' do + ${2} +end
scrooloose/snipmate-snippets
c8439becce244694a846e4ec4b33feec17820c30
add another place holder for the rails image_tag snippet
diff --git a/eruby-rails/it.snippet b/eruby-rails/it.snippet index 14d15dd..e15196e 100644 --- a/eruby-rails/it.snippet +++ b/eruby-rails/it.snippet @@ -1 +1 @@ -<%= image_tag "${1}" %> +<%= image_tag "${1}"${2} %>
scrooloose/snipmate-snippets
ea63deeb615048b0824696f55995a7229172cdf9
add new placeholder for the rails form_for snippet form variable name
diff --git a/eruby-rails/ffcb.snippet b/eruby-rails/ffcb.snippet index ecc30d8..46feff8 100644 --- a/eruby-rails/ffcb.snippet +++ b/eruby-rails/ffcb.snippet @@ -1 +1 @@ -<%= f.check_box :${1:attribute} %> +<%= ${1:f}.check_box :${2:attribute} %> diff --git a/eruby-rails/ffff.snippet b/eruby-rails/ffff.snippet index 460...
scrooloose/snipmate-snippets
b6bc5c9ff41125c0843419b09db79220cc41221a
Belongs to snippets to have just association variable
diff --git a/ruby-rails/bt.snippet b/ruby-rails/bt.snippet index 8edf6d5..b28e1e6 100644 --- a/ruby-rails/bt.snippet +++ b/ruby-rails/bt.snippet @@ -1 +1 @@ -belongs_to :<+association_name+><+, :class_name => "<+Object+>", :foreign_key => "<+<+object+>_id+>"+> +belongs_to :${1:association}
scrooloose/snipmate-snippets
225879646767987f4822e543021761c516e2d4c6
renamed validates presence of namespace and removed options that comes with it
diff --git a/ruby-rails/vp.snippet b/ruby-rails/vp.snippet deleted file mode 100644 index d09cf97..0000000 --- a/ruby-rails/vp.snippet +++ /dev/null @@ -1 +0,0 @@ -validates_presence_of :${1:attribute}<+, :on => :<+create+>, :message => "<+can't be blank+>"+> diff --git a/ruby-rails/vpo.snippet b/ruby-rails/vpo.snippet...
scrooloose/snipmate-snippets
430c22b3ddbd325d250cd23588703afb473b32d5
Removed if else block in a for loops for rails view
diff --git a/eruby-rails/for.snippet b/eruby-rails/for.snippet index 98e1d88..30da560 100644 --- a/eruby-rails/for.snippet +++ b/eruby-rails/for.snippet @@ -1,7 +1,3 @@ -<% if !${1:list}.blank? -%> - <% for ${2:item} in $1 -%> - ${3} - <% end -%> -<% else -%> - ${4} +<% for ${2:item} in ${1:list} -%> + ${3} <% end -%...
scrooloose/snipmate-snippets
e9624ec3794ee835fbafece7ce47c78e6148236a
added i18n snippet
diff --git a/eruby-rails/i18.snippet b/eruby-rails/i18.snippet new file mode 100644 index 0000000..2a30fae --- /dev/null +++ b/eruby-rails/i18.snippet @@ -0,0 +1 @@ +I18n.t('${1:type.key}')${2} diff --git a/ruby-rails/i18.snippet b/ruby-rails/i18.snippet new file mode 100644 index 0000000..2a30fae --- /dev/null +++ b/r...
scrooloose/snipmate-snippets
7bc6d61034f3962fb538a245bfe3c8b426de7936
added snippets for css
diff --git a/css/#.snippet b/css/#.snippet new file mode 100644 index 0000000..5a92681 --- /dev/null +++ b/css/#.snippet @@ -0,0 +1,3 @@ +#${1:id} { + ${2} +} diff --git a/css/cl.snippet b/css/cl.snippet new file mode 100644 index 0000000..a13d120 --- /dev/null +++ b/css/cl.snippet @@ -0,0 +1,3 @@ +.${1:class} { + ${...
scrooloose/snipmate-snippets
16b9a4d22079c426a5739b896c51c86f5958be99
make the html/t snippet more awesome
diff --git a/html/t.snippet b/html/t.snippet index 32ede19..ef50427 100644 --- a/html/t.snippet +++ b/html/t.snippet @@ -1,4 +1,3 @@ <${1:div}${2}> ${3} -</$1> - +</$1>${4}
scrooloose/snipmate-snippets
19475da477b18cb704274a6780a6eae02ecfcc73
fix the closing tag
diff --git a/html/t.snippet b/html/t.snippet index 14d97e4..32ede19 100644 --- a/html/t.snippet +++ b/html/t.snippet @@ -1,4 +1,4 @@ <${1:div}${2}> ${3} -<$1> +</$1>
scrooloose/snipmate-snippets
148f0b1d3016d90221c097d9ee99ba7b9cd00399
add classe snippet for ruby
diff --git a/ruby/classe.snippet b/ruby/classe.snippet new file mode 100644 index 0000000..f683c68 --- /dev/null +++ b/ruby/classe.snippet @@ -0,0 +1 @@ +class ${1:ErrorClassName} < ${2:StandardError}; end${3}
scrooloose/snipmate-snippets
e241b3f066aa12ffd60c0d864ded7ba5e36c7668
add a couple of place holders and fix indent
diff --git a/html/skel/basic.snippet b/html/skel/basic.snippet index ec52f23..61ec244 100644 --- a/html/skel/basic.snippet +++ b/html/skel/basic.snippet @@ -1,12 +1,13 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://ww...
scrooloose/snipmate-snippets
ca041b03db74a386b1330113fc9357fcdeeab62b
rename <.snippet to t.snippet since <.snippet is an illegal filename on Windows
diff --git a/html/t.snippet b/html/t.snippet new file mode 100644 index 0000000..14d97e4 --- /dev/null +++ b/html/t.snippet @@ -0,0 +1,4 @@ +<${1:div}${2}> + ${3} +<$1> +
scrooloose/snipmate-snippets
3d6e092495a253380a0c45f74e46046073aea86f
change main snippet
diff --git a/c/main.snippet b/c/main.snippet index 4d7cf58..bbfd8bf 100644 --- a/c/main.snippet +++ b/c/main.snippet @@ -1,5 +1,5 @@ int main (int argc, char const* argv[]) { - ${1} + ${1:/* code */} return 0; }
scrooloose/snipmate-snippets
778d6e8326e814a5b1da1eb3e4b7c23ccdda94d1
added combined snippet form
diff --git a/ruby-rails/rest.snippet b/ruby-rails/rest.snippet index 62f32b8..7938f9d 100644 --- a/ruby-rails/rest.snippet +++ b/ruby-rails/rest.snippet @@ -1,3 +1,3 @@ -respond_to do |format| - format.${1:html} +respond_to do |wants| + wants.${1:html} <+{ <++> }+> end diff --git a/ruby-rails/vp.snippet b/ruby-rails/v...
scrooloose/snipmate-snippets
70f273f39b6d5af3408694e748960fa604a1f08e
validates_format of snippet fix
diff --git a/ruby-rails/vf.snippet b/ruby-rails/vf.snippet index 75829cc..6564847 100644 --- a/ruby-rails/vf.snippet +++ b/ruby-rails/vf.snippet @@ -1 +1 @@ -validates_format_of :<+attribute+>, :with => /<+regex+>/<+, :on => :<+create+>, :message => "<+is invalid+>"+> +validates_format_of :${1:attribute}, :with => /${2...
scrooloose/snipmate-snippets
ade46e731766173c9486b0cf355ac3f62c19f4a9
fix indentation for c snippets
diff --git a/c/cl.snippet b/c/cl.snippet index d7c68cb..8196287 100644 --- a/c/cl.snippet +++ b/c/cl.snippet @@ -1,7 +1,7 @@ class ${1:`Filename('$1_t', 'name')`} { - public: - $1 (${2:arguments}); - virtual ~$1 (); - private: - ${3:/* data */} + public: + $1 (${2:arguments}); + virtual ~$1 (); + private:...
scrooloose/snipmate-snippets
c57c67b90098270645c689ccdb0dcd3b0d638206
added change_table
diff --git a/ruby-rails/mcht.snippet b/ruby-rails/mcht.snippet new file mode 100644 index 0000000..a71b473 --- /dev/null +++ b/ruby-rails/mcht.snippet @@ -0,0 +1,3 @@ +change_table :${1:table_name} do |t| + ${2} +end
scrooloose/snipmate-snippets
732448be5fdae9b9836ef2c0f0d99221a1f0b389
added remove_column
diff --git a/ruby-rails/mrc.snippet b/ruby-rails/mrc.snippet new file mode 100644 index 0000000..aaeba25 --- /dev/null +++ b/ruby-rails/mrc.snippet @@ -0,0 +1 @@ +remove_column :${1:column}
scrooloose/snipmate-snippets
2f1fdc9debd7b120f485608c05fc7fcc3ad676f5
added before_save
diff --git a/ruby-rails/mbs.snippet b/ruby-rails/mbs.snippet new file mode 100644 index 0000000..a3b34bb --- /dev/null +++ b/ruby-rails/mbs.snippet @@ -0,0 +1 @@ +before_save :${1:method}
scrooloose/snipmate-snippets
2bc1e01cdfae8b8ef32544baa59158976b2c172e
add references snippet
diff --git a/ruby-rails/tref.snippet b/ruby-rails/tref.snippet new file mode 100644 index 0000000..1286786 --- /dev/null +++ b/ruby-rails/tref.snippet @@ -0,0 +1 @@ +t.references :${1:model}
scrooloose/snipmate-snippets
53b07f9579cf58bb143e768cfa8096c1860537e6
add change_column snippet
diff --git a/ruby-rails/mcc.snippet b/ruby-rails/mcc.snippet new file mode 100644 index 0000000..74dc7af --- /dev/null +++ b/ruby-rails/mcc.snippet @@ -0,0 +1 @@ +change_column :${1:table}, :${2:column}, :${3:type}
scrooloose/snipmate-snippets
66953c604da3d14e16b0be908b30fb5bf7d5b0b4
added t.remove snippet
diff --git a/ruby-rails/trc.snippet b/ruby-rails/trc.snippet new file mode 100644 index 0000000..2d6250a --- /dev/null +++ b/ruby-rails/trc.snippet @@ -0,0 +1 @@ +t.remove :${1:column}
scrooloose/snipmate-snippets
b7e45036066154223b0c9a5efc1d835a45249923
fixed remove column snippet
diff --git a/ruby-rails/mrmc.snippet b/ruby-rails/mrmc.snippet index 5aea61c..8a5bd1f 100644 --- a/ruby-rails/mrmc.snippet +++ b/ruby-rails/mrmc.snippet @@ -1 +1 @@ -remove_column :<+table+>, :<+column+> +remove_column :${1:table}, :${2:column}
scrooloose/snipmate-snippets
daabeac1a84fa975f44ba09e35b76317d6a35057
fix the < html snippet
diff --git a/html/<.snippet b/html/<.snippet index 96479b8..0a0a035 100644 --- a/html/<.snippet +++ b/html/<.snippet @@ -1,3 +1,3 @@ <${1:div}${2}> ${3} -<$1> +</$1>
scrooloose/snipmate-snippets
dea62e5cad062fd720ed903acfa9264aee9ed4dd
fixed http snippets
diff --git a/ruby/http_get.snippet b/ruby/http_get.snippet index a932cbd..cba6d58 100644 --- a/ruby/http_get.snippet +++ b/ruby/http_get.snippet @@ -1,2 +1,2 @@ require 'net/http' -res = Net::HTTP.get(URI.parse('${1:url}')) +res = Net::HTTP.get URI.parse('${1:url}') diff --git a/ruby/http_post.snippet b/ruby/http_post...
scrooloose/snipmate-snippets
a12dce4a05416780adadaf3a19f8b9ed3253a60b
fixed the ordering of the changed doc_f php snippet
diff --git a/php/doc_f.snippet b/php/doc_f.snippet index 8d76595..a9adbb0 100644 --- a/php/doc_f.snippet +++ b/php/doc_f.snippet @@ -1,8 +1,8 @@ /** * $2 - * @return ${5:void} - * @author ${6:`g:snips_author`} + * @return ${4:void} + * @author ${5:`g:snips_author`} **/ ${1:public }function ${2:someFunc}(${3}) -{$...
scrooloose/snipmate-snippets
21b523efddd0bbd31977eaff020702c3a9340d71
snipmate doesn't seem to like the missing newline at the end of the file
diff --git a/javascript/anon.snippet b/javascript/anon.snippet index 17004d4..d486c43 100644 --- a/javascript/anon.snippet +++ b/javascript/anon.snippet @@ -1 +1 @@ -function(${1}) { ${2} }; \ No newline at end of file +function(${1}) { ${2} };
scrooloose/snipmate-snippets
a92538db2401c34faad3b75fa6ba2e507ec07f70
ip snippet added
diff --git a/ruby/ip.snippet b/ruby/ip.snippet new file mode 100644 index 0000000..9176976 --- /dev/null +++ b/ruby/ip.snippet @@ -0,0 +1 @@ +ip_addr = request.env['REMOTE_ADDR']
scrooloose/snipmate-snippets
c848f7759222b5430c4e4ae02b6b18cad4d0af33
added http-get and http-post snippets
diff --git a/ruby/http_get.snippet b/ruby/http_get.snippet new file mode 100644 index 0000000..a932cbd --- /dev/null +++ b/ruby/http_get.snippet @@ -0,0 +1,2 @@ +require 'net/http' +res = Net::HTTP.get(URI.parse('${1:url}')) diff --git a/ruby/http_post.snippet b/ruby/http_post.snippet new file mode 100644 index 0000000...
scrooloose/snipmate-snippets
c9d64585fbbcb9f5bb0982095b3758745da06283
added rjson snippet
diff --git a/ruby-rails/rjson.snippet b/ruby-rails/rjson.snippet new file mode 100644 index 0000000..fece1fc --- /dev/null +++ b/ruby-rails/rjson.snippet @@ -0,0 +1 @@ +render :json => ${1:text to render}
scrooloose/snipmate-snippets
97b9c865eee699400b57b9ebf9b5840f2e6ebcbc
added digest sha1 snippet
diff --git a/ruby-rails/sha1.snippet b/ruby-rails/sha1.snippet new file mode 100644 index 0000000..1984747 --- /dev/null +++ b/ruby-rails/sha1.snippet @@ -0,0 +1 @@ +Digest::SHA1.hexdigest(${1:string})
scrooloose/snipmate-snippets
d18bc01645af30ae74116aaedc20c0dc7b9fb276
changed the rest snippet
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..da39d98 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +*~ +.DS_Store + +*.log +*.tmp +*.swp +*.old +*.bkp +*.zip +*.rar +*.arj +*.[t]gz +*.[t]bz2 + +tmp/ +log/ diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..6c705ca --- /dev...
mattscilipoti/farmer
6538dc745bd073c7708f5510556774e4939d26c0
Add README: farmer renamed to cucumber-farmer
diff --git a/README b/README new file mode 100644 index 0000000..056b7ab --- /dev/null +++ b/README @@ -0,0 +1,6 @@ +Hello all, + +Farmer has been renamed to cucumber-farmer. +The repo has moved to http://github.com/mattscilipoti/cucumber-farmer + +-matt \ No newline at end of file
openback/Type-Fresh
85916decf69deefe5b9a24bf3f008170c3d2dbbf
Changed the remounter and refactored code.
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index c63f20a..5213dc5 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,26 +1,26 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.pixelpod.typefresh" android:version...
openback/Type-Fresh
b81d2e56717a6e04d546f13ed3a280d76c12c799
Fixed icons and most CM6 issues. 0.9.3.6 release
diff --git a/.project b/.project index 4a86a24..e61a110 100644 --- a/.project +++ b/.project @@ -1,33 +1,33 @@ <?xml version="1.0" encoding="UTF-8"?> <projectDescription> - <name>Type Fresh</name> + <name>Type-Fresh</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>com....
openback/Type-Fresh
22475bc0b809bd586715a8f5554187395b99bdf9
Yet another, hopefully more compatible remounter.
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 996967a..c31aa9c 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,24 +1,24 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="net.pixelpod.typefresh" android:version...
openback/Type-Fresh
d4585771abb9fdf0a2d3f6d134dab406a41a7401
Fixed rebooting
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 0fd20d5..d846955 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,24 +1,24 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="net.pixelpod.typefresh" android:version...
openback/Type-Fresh
2e423575e1073727c98d773d2fcdcb03521c88ad
Added 1.5 support and proper ProgressDialog titles
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 5937441..0fd20d5 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,29 +1,24 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.pixelpod.typefresh" android:version...
openback/Type-Fresh
410c144720f68323a0aad890a2760bf85f9e4ac9
Refactoring, changed class member names for consistency
diff --git a/res/layout/font_select.xml b/res/layout/font_select.xml index 0e8c79d..4dd6428 100644 --- a/res/layout/font_select.xml +++ b/res/layout/font_select.xml @@ -1,17 +1,16 @@ <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="...
openback/Type-Fresh
bf45b79033bbdc37b9cd1f2036d1406cd6913e60
Added context menus, selective remounting, extStorage, folder memory
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 804280b..5937441 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,29 +1,29 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="net.pixelpod.typefresh" android:version...
openback/Type-Fresh
aaa3c160ab4b2753f879f630ce3b5bb680dadb61
Silly typo
diff --git a/README.md b/README.md index 286aecb..28cb5d7 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,34 @@ Type Fresh ========== *An Android app that allows users to change their system fonts.* Programmed by: *openback*&lt;[openback@pixelpod.net][1]&gt; Art by: *minusbaby* &lt;[hello@minusbaby.com][...
openback/Type-Fresh
f23ca196bd47de48faa54e5384330ed5b2706190
Added Market images
diff --git a/market/180x120-paper.png b/market/180x120-paper.png new file mode 100644 index 0000000..761bba7 Binary files /dev/null and b/market/180x120-paper.png differ diff --git a/qrcode.png b/market/qrcode.png similarity index 100% rename from qrcode.png rename to market/qrcode.png diff --git a/market/screenshot1.p...
openback/Type-Fresh
6af2f0c4f95e49fdcb1ffa92f50272ada3f1f3e0
Removed rebooting for now.
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 4edd862..8a61381 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,29 +1,29 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - android:versionName="0.8" package="net.pixelpod....
openback/Type-Fresh
94f0d171669b8e4a8bd3737430d27a6471e3d568
cleanup
diff --git a/src/net/pixelpod/typefresh/TypeFresh.java b/src/net/pixelpod/typefresh/TypeFresh.java index 45a67f8..4f5805e 100644 --- a/src/net/pixelpod/typefresh/TypeFresh.java +++ b/src/net/pixelpod/typefresh/TypeFresh.java @@ -1,513 +1,506 @@ /* * Copyright (C) 2010 Pixelpod INTERNATIONAL, Inc. * * Permission...
openback/Type-Fresh
aca04218eda3944057a06c8cc2c577ebd8ba0c8a
cleanup
diff --git a/src/net/pixelpod/typefresh/TypeFresh.java b/src/net/pixelpod/typefresh/TypeFresh.java index 77b02df..45a67f8 100644 --- a/src/net/pixelpod/typefresh/TypeFresh.java +++ b/src/net/pixelpod/typefresh/TypeFresh.java @@ -1,502 +1,513 @@ /* * Copyright (C) 2010 Pixelpod INTERNATIONAL, Inc. * * Permission...
openback/Type-Fresh
953455076dea39aa870426af11a1369d9994497e
Generalized remount, removed some file handles
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index d72c505..a6e0eff 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,30 +1,30 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - android:versionCode="10" + android:versionC...
openback/Type-Fresh
37088c3bddde73ded1aa444b687d1cb25203c466
Switched FontCopier from Runnable to AsyncTask
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 75a8da8..ec995f9 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,30 +1,30 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="9" android:versionNa...
openback/Type-Fresh
9f055c5295e27b9e1a8b6ba32e4ee79acd7941c5
create Dialogs properly and factored out copier thread into new Class
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 0385b5f..75a8da8 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,30 +1,30 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - android:versionCode="8" + android:versionCo...
openback/Type-Fresh
ad2385096eccc7bb976dc4045a10e3c3963064f9
Switch package from com.pixelpod.typefresh to net.pixelpod.typefresh
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 313c35b..0385b5f 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,30 +1,30 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - android:versionCode="1" - android:versionNa...
openback/Type-Fresh
6ea4f28a4cb8840828935257a34e0158f9c43a77
Added minusbaby's graphics and About screen
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 32ac734..313c35b 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,25 +1,30 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionNa...
openback/Type-Fresh
9e2615bf5478273a3d639a51a06f60deeb84f670
Edited README
diff --git a/README.md b/README.md index 9867f28..d4648d7 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,34 @@ Type Fresh ========== -*An Android application that allows users to change their system fonts.* +*An Android app that allows users to change their system fonts.* -Programmed by: *openback*<[openback@...
openback/Type-Fresh
961c66c6f1f2b0099a73855fc7fb4ac6df9856e7
Added README
diff --git a/src/com/pixelpod/typefresh/mainForm.java b/src/com/pixelpod/typefresh/mainForm.java index 0b834fc..9d4942f 100644 --- a/src/com/pixelpod/typefresh/mainForm.java +++ b/src/com/pixelpod/typefresh/mainForm.java @@ -1,473 +1,472 @@ package com.pixelpod.typefresh; import java.io.BufferedReader; import java...
openback/Type-Fresh
231d8ba4a17aac65ea2c3b7fb4653f9f20a67956
Added README
diff --git a/README.md b/README.md new file mode 100644 index 0000000..9867f28 --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +Type Fresh +========== + +*An Android application that allows users to change their system fonts.* + +Programmed by: *openback*<[openback@pixelpod.net][1]> + +Art by: *minusbaby* <[minusbaby@p...
infonium/scriptty
26e56ef5fdb2946943fd9fc192faf4ef207ef065
Regenerate gemspec for version 1.3.0
diff --git a/scriptty.gemspec b/scriptty.gemspec new file mode 100644 index 0000000..4e5725f --- /dev/null +++ b/scriptty.gemspec @@ -0,0 +1,147 @@ +# Generated by jeweler +# DO NOT EDIT THIS FILE DIRECTLY +# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' +# -*- encoding: utf-8 -*- + +Gem::Specificati...
infonium/scriptty
0746a8b554f22b0c59ffd4738f3b64aeb97fdd24
Version bump to 1.3.0
diff --git a/VERSION b/VERSION index 26aaba0..589268e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.0 +1.3.0 \ No newline at end of file
infonium/scriptty
df1f84129865212c19fccbb2b15ce1c0c80b865b
Don't log sleep(0.1) commands created by RequestDispatcher#idle to the transcript
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 705ee79..ba97f2b 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,493 +1,495 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
c943ccbf053faa1cd48c6d9ca54981c62fc00007
Add missing assert to TranscriptWriterTest
diff --git a/test/util/transcript/writer_test.rb b/test/util/transcript/writer_test.rb index f33d903..9daabb0 100644 --- a/test/util/transcript/writer_test.rb +++ b/test/util/transcript/writer_test.rb @@ -1,158 +1,159 @@ # = Tests for ScripTTY::Util::Transcript::Writer # Copyright (C) 2010 Infonium Inc. # # This f...
infonium/scriptty
6f78a892c74c382ea2da22340e0426f2e7760ec0
Version bump to 1.2.0
diff --git a/VERSION b/VERSION index 9084fa2..26aaba0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.0 +1.2.0
infonium/scriptty
534b4fc3665e1f5cdd650dd67b6c6b4bb8a84c04
Include filename in error message when ScreenPattern parsing fails
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 24a41a1..705ee79 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,493 +1,493 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
cba5614f8cce6731867f5c3308fef810084746e0
RequestDispatcher: Don't leave requests hanging when the main loop exits
diff --git a/lib/scriptty/request_dispatcher.rb b/lib/scriptty/request_dispatcher.rb index 18de259..214b50c 100644 --- a/lib/scriptty/request_dispatcher.rb +++ b/lib/scriptty/request_dispatcher.rb @@ -1,279 +1,292 @@ # = Request dispatcher # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # #...
infonium/scriptty
128b5c963198573f2488a5ab7703b5ab2b4dc45c
Workaround for JRuby bug that sometimes causes "rescue Exception" to not always rescue all exceptions.
diff --git a/lib/scriptty/request_dispatcher.rb b/lib/scriptty/request_dispatcher.rb index e8888af..18de259 100644 --- a/lib/scriptty/request_dispatcher.rb +++ b/lib/scriptty/request_dispatcher.rb @@ -1,241 +1,279 @@ # = Request dispatcher # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # #...
infonium/scriptty
9180a7d4318d25cd16a579f85b627b5b44d0dfbb
RequestDispatcher: Swallow *all* exceptions, so that we catch stuff like SyntaxError
diff --git a/lib/scriptty/request_dispatcher.rb b/lib/scriptty/request_dispatcher.rb index 3e6666e..e8888af 100644 --- a/lib/scriptty/request_dispatcher.rb +++ b/lib/scriptty/request_dispatcher.rb @@ -1,241 +1,241 @@ # = Request dispatcher # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # #...
infonium/scriptty
263c26cdf3514560b4f020d382898f63345697c3
Add matched_pattern and matched_screen attributes to ScripTTY::Expect
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 5ccb659..24a41a1 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,485 +1,493 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
af4d8a26ed43960a9d533d660bd6f6f86e3a17b7
Replace ScripTTY::Expect#expand_path with call to built-in File.expand_path
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index ac5ddb9..5ccb659 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,495 +1,485 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
23d8e082839a8e86ca0de3cd1c20f96a32860d66
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
infonium/scriptty
a062fa2255bdaea044a428fa944e0a3b60fd9213
Add set_basedir command to ScripTTY::Expect
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 3d4ea74..ac5ddb9 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,473 +1,495 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
68ea59b57b5af15fac1c13140ebaece4e7c0d5af
Version bump to 1.0.0
diff --git a/VERSION b/VERSION index ac39a10..3eefcb9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.0 +1.0.0
infonium/scriptty
8e8e17fb19f0899975abaf54d0de9019accead04
Add ScripTTY::RequestDispatcher
diff --git a/examples/rdispatch/demo-request-dispatcher.rb b/examples/rdispatch/demo-request-dispatcher.rb new file mode 100755 index 0000000..98297de --- /dev/null +++ b/examples/rdispatch/demo-request-dispatcher.rb @@ -0,0 +1,138 @@ +begin + require 'sinatra/base' + require 'scriptty/request_dispatcher' + require ...
infonium/scriptty
301497b88067880d8982dbc9e9fe19e2dfc7fc2c
Add Expect#transcript_writer_autoclose attribute
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 95893fb..3d4ea74 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,471 +1,473 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
21769f2b061308822c412a03893566bfe98a5f5d
Version bump to 0.9.0
diff --git a/VERSION b/VERSION index a3df0a6..ac39a10 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.0 +0.9.0
infonium/scriptty
41c95146138a44848399b5bd21b2195d7c253073
ScripTTY::Expect - Catch mistakes where a block is given to methods that don't take blocks (e.g. screen())
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 9113bc5..95893fb 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,453 +1,471 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
3385395230fba5fbe2b040a9af4e9ac659e702f6
Don't break make 'rake test' fail just because of the disabled EventLoopTest and CaptureAppTest
diff --git a/test/apps/capture_app_test.rb b/test/apps/capture_app_test.rb index 5f339d9..9a0ffbd 100644 --- a/test/apps/capture_app_test.rb +++ b/test/apps/capture_app_test.rb @@ -1,123 +1,131 @@ # = Tests for the Capture App # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is ...
infonium/scriptty
bd386655c1876fcfb32cf4dded976187c7a1e609
Version bump to 0.8.0
diff --git a/VERSION b/VERSION index faef31a..a3df0a6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.0 +0.8.0
infonium/scriptty
2ea942fc669bf41c542f7e286597313edc9059c1
ScripTTY::Expect - Add puts, print, p, and pp methods that log to the transcript
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 066bccb..9113bc5 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,428 +1,453 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
89c79db26cc66be7694c0b6e6919def75f4b765e
EventLoop - Show a more informative error message for the Glassfish SocketChannel.keyFor bug
diff --git a/README.rdoc b/README.rdoc index 449b9b6..8a08963 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,31 +1,48 @@ = Introduction ScripTTY is a library for JRuby that lets you write scripts to control full-screen terminal-based applications. = Terminals supported Limited DG410 and XTerm support. =...
infonium/scriptty
7175994e7e9bc2ba6811b71fc25bce5fa7975dec
Version bump to 0.7.0
diff --git a/VERSION b/VERSION index a918a2a..faef31a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.0 +0.7.0
infonium/scriptty
4c1b2c6dd624aba392c8005937d4260f7ed42b78
ScripTTY::Expect - Rename "match" as "capture"
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index d678bb2..066bccb 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,427 +1,428 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
b34e5cd5e490e29f72a99ea1dae2e0278d20be64
Net::Console & Net::PasswordPrompt - Extract from CaptureApp
diff --git a/lib/scriptty/apps/capture_app.rb b/lib/scriptty/apps/capture_app.rb index 69b44cb..7292b72 100644 --- a/lib/scriptty/apps/capture_app.rb +++ b/lib/scriptty/apps/capture_app.rb @@ -1,252 +1,251 @@ # = Capture app # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is fr...
infonium/scriptty
cb62154468c5f4cc50ed4dda74a02b9a5fab8f48
ScripTTY::Expect - Add send_password method
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 2d74cd8..d678bb2 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,417 +1,427 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
1fdb8f96c52b000804518a326e4f469c4eeac6c0
Add exception records to transcript format
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 201da85..2d74cd8 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,421 +1,417 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
2dbc6bf35bdbbeb05d52d40c6f4cee325c3de799
ScripTTY::Expect - Add [] and []= methods for getting/setting evaluator instance variables
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 576089f..201da85 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,411 +1,421 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
b8d3ee06bbbcf0c2d72ed531ebd9a15fb0fa018d
Version bump to 0.6.0
diff --git a/VERSION b/VERSION index 8f0916f..a918a2a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.0 +0.6.0
infonium/scriptty
364ccbafb1aec78f9360a04ac5e0fa65136d5148
ScripTTY::Expect - Add dump method
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index f913879..576089f 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,394 +1,411 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
40cd680dd2f7b3cb2c15ee590060041c86aa19ad
Add examples/demo-telnet-session.rb
diff --git a/examples/demo-telnet-session-screens.txt b/examples/demo-telnet-session-screens.txt new file mode 100644 index 0000000..41dc876 --- /dev/null +++ b/examples/demo-telnet-session-screens.txt @@ -0,0 +1,420 @@ +[dump1] +size: (24, 80) +cursor_pos: (0, 29) +text: <<END ++---------------------------------------...
infonium/scriptty
60e5f90e8d1f7e8ed0da49eec535630b5b0b6e60
ScripTTY::Expect - Show effective patterns in timeout error message
diff --git a/lib/scriptty/expect.rb b/lib/scriptty/expect.rb index 143ace4..f913879 100644 --- a/lib/scriptty/expect.rb +++ b/lib/scriptty/expect.rb @@ -1,392 +1,394 @@ # = Expect object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software: you can redistribute it a...
infonium/scriptty
58d2522bf16e7e52a99df101c95922765014a673
Term::XTerm - Add support for "erase characters", "line position absolute" and "Designate G0/G1/G2/G3 character set"
diff --git a/lib/scriptty/term/xterm.rb b/lib/scriptty/term/xterm.rb index 8ed72f0..e7b2144 100644 --- a/lib/scriptty/term/xterm.rb +++ b/lib/scriptty/term/xterm.rb @@ -1,656 +1,681 @@ # = XTerm terminal emulation # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software...
infonium/scriptty
b61ca0e7b07d90c2561e84fd1005a0c13604e53e
ScripTTY::ScreenPattern::Generator - Make :force_cursor default to /\s/
diff --git a/lib/scriptty/screen_pattern/generator.rb b/lib/scriptty/screen_pattern/generator.rb index d56fe28..bc5387f 100644 --- a/lib/scriptty/screen_pattern/generator.rb +++ b/lib/scriptty/screen_pattern/generator.rb @@ -1,398 +1,399 @@ # = Generator for screen pattern files # Copyright (C) 2010 Infonium Inc. #...
infonium/scriptty
a928aa060c2859b98b855b5e4285064d79e0c1e4
FSM grammar: Allow backslash-dash ("\-") in str_single
diff --git a/lib/scriptty/util/fsm/scriptty_fsm_definition.treetop b/lib/scriptty/util/fsm/scriptty_fsm_definition.treetop index e7fe18f..ce8866e 100644 --- a/lib/scriptty/util/fsm/scriptty_fsm_definition.treetop +++ b/lib/scriptty/util/fsm/scriptty_fsm_definition.treetop @@ -1,189 +1,191 @@ # = Treetop grammar for Sc...
infonium/scriptty
7d6a71d04374c79a763c93f36848622d0fa1c5e2
ScreenPattern - Change from_term class method to take opts hash
diff --git a/lib/scriptty/apps/capture_app.rb b/lib/scriptty/apps/capture_app.rb index c07336e..69b44cb 100644 --- a/lib/scriptty/apps/capture_app.rb +++ b/lib/scriptty/apps/capture_app.rb @@ -1,252 +1,252 @@ # = Capture app # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is fr...
infonium/scriptty
11f2a01117e82b1656801c42d782076e889502ce
Term::* - Replace error() with raise Util::FSM::NoMatch
diff --git a/lib/scriptty/term/dg410.rb b/lib/scriptty/term/dg410.rb index 0ec4ed3..cb07e29 100644 --- a/lib/scriptty/term/dg410.rb +++ b/lib/scriptty/term/dg410.rb @@ -1,489 +1,484 @@ # = DG410 terminal emulation # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is free software...
infonium/scriptty
2517ba3359f5662d7a57e565b8ca68efef05671c
ScreenPattern::Parser - Fix bug in explicit cursor_pos parsing
diff --git a/lib/scriptty/screen_pattern/parser.rb b/lib/scriptty/screen_pattern/parser.rb index 878f2bf..bcc574b 100644 --- a/lib/scriptty/screen_pattern/parser.rb +++ b/lib/scriptty/screen_pattern/parser.rb @@ -1,558 +1,561 @@ # = Parser for screen pattern files # Copyright (C) 2010 Infonium Inc. # # This file i...
infonium/scriptty
7d8d5cbd3fadbc09d8f90732ffa752e136597818
ConsoleApp: Add "dump" command for writing screen dumps on demand
diff --git a/lib/scriptty/apps/capture_app.rb b/lib/scriptty/apps/capture_app.rb index 2434697..c07336e 100644 --- a/lib/scriptty/apps/capture_app.rb +++ b/lib/scriptty/apps/capture_app.rb @@ -1,213 +1,252 @@ # = Capture app # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is fr...
infonium/scriptty
87ecf68d004a3f6f9b9f5addf064c5249325dc0c
ScreenPattern#generate - Use name instance variable instead of passed-in name
diff --git a/lib/scriptty/screen_pattern.rb b/lib/scriptty/screen_pattern.rb index aab09f6..197c301 100644 --- a/lib/scriptty/screen_pattern.rb +++ b/lib/scriptty/screen_pattern.rb @@ -1,104 +1,104 @@ # = Screen pattern object # Copyright (C) 2010 Infonium Inc. # # This file is part of ScripTTY. # # ScripTTY is ...
infonium/scriptty
aea5a59f7b81e3763a02e78190868b9b73b3142e
CaptureApp: $KCODE="UTF8" fixes
diff --git a/lib/scriptty/apps/capture_app/console.rb b/lib/scriptty/apps/capture_app/console.rb index a8a19b0..06c1441 100644 --- a/lib/scriptty/apps/capture_app/console.rb +++ b/lib/scriptty/apps/capture_app/console.rb @@ -1,104 +1,104 @@ require 'scriptty/apps/capture_app' module ScripTTY module Apps cla...
infonium/scriptty
3724050939d82c618b7699acdc33b4e19986a5cd
Version bump to 0.5.0
diff --git a/VERSION b/VERSION index 77d6f4c..8f0916f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.0 +0.5.0
infonium/scriptty
1de278e3d9ee5820d7a1700cfcd93c8c65678aa4
Rakefile: clobber generated files
diff --git a/Rakefile b/Rakefile index 4b14719..988d1b9 100644 --- a/Rakefile +++ b/Rakefile @@ -1,44 +1,49 @@ begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "scriptty" gemspec.summary = "write expect-like script to control full-screen terminal-based applications" gemspec.d...
infonium/scriptty
bca331d9f9e470ab76140ac4c1aeff8528da2e27
Add pkg directory to .gitignore
diff --git a/.gitignore b/.gitignore index f8810c6..5b82d3c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /coverage /html +/pkg