repo string | commit string | message string | diff string |
|---|---|---|---|
validates-email-format-of/validates_email_format_of | 5cd668b3c2a393aad01f9923da8411b49e1da9c1 | abstracted logic for generating default_message into a separate method | diff --git a/lib/validates_email_format_of.rb b/lib/validates_email_format_of.rb
index 2e9dc0b..e2b6bad 100644
--- a/lib/validates_email_format_of.rb
+++ b/lib/validates_email_format_of.rb
@@ -1,141 +1,145 @@
# encoding: utf-8
require 'validates_email_format_of/version'
module ValidatesEmailFormatOf
def self.lo... |
validates-email-format-of/validates_email_format_of | 8d2fa311120a745256637137b242a158616199c8 | suppressed testing of non-i18n use when ActiveModel is defined | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 842a12b..584a111 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,308 +1,312 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | 3bf3b0d380da8ce6a3a8ab6389f2845cd7b9ab87 | added a Contributing section to the README | diff --git a/README.rdoc b/README.rdoc
index f004434..263f0b2 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,73 +1,90 @@
= validates_email_format_of Gem and Rails Plugin
Validate e-mail addresses against RFC 2822 and RFC 3696.
== Installation
Installing as a gem:
gem install validates_email_format_of
... |
validates-email-format-of/validates_email_format_of | 159622bb8f45b42f846e35a5b35854dbc66eec2a | made it work without i18n | diff --git a/lib/validates_email_format_of.rb b/lib/validates_email_format_of.rb
index 1b48fff..2e9dc0b 100644
--- a/lib/validates_email_format_of.rb
+++ b/lib/validates_email_format_of.rb
@@ -1,139 +1,141 @@
# encoding: utf-8
require 'validates_email_format_of/version'
module ValidatesEmailFormatOf
def self.lo... |
validates-email-format-of/validates_email_format_of | f320524d77733eafac3db80d3298b8164fafcdbb | whitespace changes only | diff --git a/README.rdoc b/README.rdoc
index 096c8bf..2a0f6bc 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,93 +1,93 @@
= validates_email_format_of Gem and Rails Plugin
Validate e-mail addresses against RFC 2822 and RFC 3696.
== Installation
Installing as a gem:
gem install validates_email_format_of
... |
validates-email-format-of/validates_email_format_of | 400297645a80a4d4e028101fabc9ccf1da7311a5 | corrected gem version | diff --git a/lib/validates_email_format_of/version.rb b/lib/validates_email_format_of/version.rb
index f88aff5..b83f3d4 100644
--- a/lib/validates_email_format_of/version.rb
+++ b/lib/validates_email_format_of/version.rb
@@ -1,3 +1,3 @@
module ValidatesEmailFormatOf
- VERSION = '4.0.0'
+ VERSION = '1.6.0'
end
|
validates-email-format-of/validates_email_format_of | 5769d238eb9b9c9cdb917e14c0d8f63842a211c5 | added warning for older versions of ActiveModel | diff --git a/lib/validates_email_format_of.rb b/lib/validates_email_format_of.rb
index 1b73eb4..1b48fff 100644
--- a/lib/validates_email_format_of.rb
+++ b/lib/validates_email_format_of.rb
@@ -1,139 +1,139 @@
# encoding: utf-8
require 'validates_email_format_of/version'
module ValidatesEmailFormatOf
def self.lo... |
validates-email-format-of/validates_email_format_of | bbdbaad91ad0ce34cbd72021d8c2abf83b0c40fc | made sure we're getting our error messages from I18n | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 34536a1..9cf7a56 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,265 +1,296 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | c6cdf38da1e06223b8981ec7b3755b32e0f0c14f | added spec for custom mx_message | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 06924ff..34536a1 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,259 +1,265 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | d4a739ac94dd8309adfe26f47ef22d17dfa554bf | removed POC spec now that all tests have been moved to spec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 578c65c..06924ff 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,262 +1,259 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | fe3d6465949d16bfb7bc9e3b49d14fd2de9d958d | moved test for custom email regex from minitest to rspec. No more minitest! | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index c3aee40..578c65c 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,252 +1,262 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | 43ec8684fa76d753fbf042e8524f8b82249ad340 | whitespace changes only | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 465d7ac..c3aee40 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,252 +1,252 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | c3402959672f7431cfa5af8dbc164d215328b341 | moved tests for shorthand format of ActiveModel validation from minitest to rspec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 5a9b2ab..465d7ac 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,230 +1,252 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | d4b5ff27a1dc06719ea2ee33e8733b5763f1d11a | moved mx record tests from minitest to rspec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 16db34b..5a9b2ab 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,170 +1,230 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | 886a216a723828e858bf81d1f3b9abb5c8b8cfd5 | moved tests for balancing of quoted characters from minitest to rspec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 764b69f..16db34b 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,165 +1,170 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | 7db69d9dfdee1fc160eb36c3848e477cf98eb3e3 | removed tests for allow_nil option since it just tests native ActiveModel code, not any logic in this library | diff --git a/test/fixtures/person.rb b/test/fixtures/person.rb
index ab207de..0841762 100644
--- a/test/fixtures/person.rb
+++ b/test/fixtures/person.rb
@@ -1,32 +1,20 @@
require 'validates_email_format_of'
module ValidatesEmailFormatOf
class Base
include ActiveModel::Model
attr_accessor :email
end
... |
validates-email-format-of/validates_email_format_of | fd082ff3139a6042b9e82374ba494fcc55a6676c | moved test for custom error message from minitest to rspec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index b87092b..764b69f 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,158 +1,165 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | f7916fd0386d6eaeb6243c8c39809952e552ac53 | moved test for whether validation modifies argument string from minitest to rspec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 56a9e34..b87092b 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,158 +1,158 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | 97fcb67be942731dafce9be6d96059777782be5e | moved quoted and excaped character tests from minitiest to rspec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 7665465..56a9e34 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,150 +1,158 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | cc8f8f201fc6e0d097acac4723c1db5895746903 | moved tests of domain and local length limit--both default and override--from minitest to rspec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 7b6a82d..7665465 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,115 +1,150 @@
# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_... |
validates-email-format-of/validates_email_format_of | 760ea2bc596add99729619e1dec625b4a38d97c5 | moved array of invalid email addresses from minitest to rspec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 1090993..7b6a82d 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,72 +1,115 @@
+# -*- encoding : utf-8 -*-
require "#{File.expand_path(File.dirname(__FILE__))}/spec_h... |
validates-email-format-of/validates_email_format_of | 382239523c003458f1d90dc1ba28d4d9d6041993 | moved array of good email addresses from minitest to rspec | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 15431f5..1090993 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,33 +1,72 @@
require "#{File.expand_path(File.dirname(__FILE__))}/spec_helper"
require "validates_em... |
validates-email-format-of/validates_email_format_of | 473d625452d5bb29a60c437153281c97a59831dd | removed active_record scope from i18n files (and I don't even know Polish\!) | diff --git a/config/locales/en.yml b/config/locales/en.yml
index 0869768..7bcb04e 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -1,12 +1,6 @@
en:
- activerecord:
- errors:
- messages:
- invalid_email_address: 'does not appear to be a valid e-mail address'
- email_address_not_... |
validates-email-format-of/validates_email_format_of | 08ccfc8630422cce8224255192d5fc1465f05981 | added more Ruby versions to travis config | diff --git a/.travis.yml b/.travis.yml
index 3df8274..4276332 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,18 @@
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
+ - 2.0.0
+ - 2.1.2
- jruby
- ree
gemfile:
- Gemfile
- gemfiles/active_model_2_1
- gemfiles/active_model_3_0
- gemfiles/active_model_3_1
... |
validates-email-format-of/validates_email_format_of | e7dd8780b8728c054b668fab6ecb52eacfb4edcf | added explicit install command to travis | diff --git a/.travis.yml b/.travis.yml
index 6ee5336..3df8274 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,15 +1,16 @@
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- ree
gemfile:
- Gemfile
- gemfiles/active_model_2_1
- gemfiles/active_model_3_0
- gemfiles/active_model_3_1
- gemfiles/active_m... |
validates-email-format-of/validates_email_format_of | 1308723e1441b9b29a039550d458aa93357fb5b2 | removed require_relative from spec so it can be tested with Ruby 1.8.7 | diff --git a/spec/validates_email_format_of_spec.rb b/spec/validates_email_format_of_spec.rb
index 63e5373..15431f5 100644
--- a/spec/validates_email_format_of_spec.rb
+++ b/spec/validates_email_format_of_spec.rb
@@ -1,33 +1,33 @@
-require_relative "spec_helper"
+require "#{File.expand_path(File.dirname(__FILE__))}/spe... |
validates-email-format-of/validates_email_format_of | 8eb29dc050fcb7faa58253c816ecc5a023935124 | explicitly told travis to use rspec | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e948cd3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+pkg
+test/debug.log
+rdoc
+Gemfile.lock
+*.gem
+*.sqlite3
+*.swp
+.ruby-version
diff --git a/.rspec b/.rspec
new file mode 100644
index 0000000..0912718
--- /dev/null
+++ b/.rspec
@@ -0,0 +1,... |
otherdave/othervim | 9b5ac9d77deb3a8b9fb561738dccc1ec0927628c | Use my new default directory | diff --git a/vimrc b/vimrc
index 8cf1e56..5762aef 100755
--- a/vimrc
+++ b/vimrc
@@ -1,495 +1,495 @@
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Maintainer: David Stahl
" http://otherdave.com - otherdave@gmail.com
"
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
... |
otherdave/othervim | 9cb8f7c19da83697ca2a7cac41ca2ed0807300bb | removing plugins I dont use | diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
deleted file mode 100755
index 6411b1d..0000000
--- a/plugin/NERD_tree.vim
+++ /dev/null
@@ -1,4059 +0,0 @@
-" ============================================================================
-" File: NERD_tree.vim
-" Description: vim global plugin that provid... |
otherdave/othervim | b771a3166888ed28f34986722272f2fed8af32fc | Add Vimroom and change the background to "dark". | diff --git a/plugin/vimroom.vim b/plugin/vimroom.vim
new file mode 100644
index 0000000..0e8076a
--- /dev/null
+++ b/plugin/vimroom.vim
@@ -0,0 +1,199 @@
+"==============================================================================
+"File: vimroom.vim
+"Description: Vaguely emulates a writeroom-like environme... |
otherdave/othervim | 56614d209af8624edb6ea30edfe95fab74e5b455 | Fix mac/windows/linux issues | diff --git a/vimrc b/vimrc
index 2d22d3f..0739c86 100755
--- a/vimrc
+++ b/vimrc
@@ -1,589 +1,521 @@
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-" Maintainer: amix the lucky stiff
-" http://amix.dk - amix@amix.dk
+" Maintainer: David Stahl
+" http://otherdave.com - otherdav... |
otherdave/othervim | ac6863de3adfcb9b4b16c9b3566298355b421e9a | dark & desert for terminal | diff --git a/vimrc b/vimrc
index 3938be1..2d22d3f 100755
--- a/vimrc
+++ b/vimrc
@@ -1,589 +1,589 @@
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Maintainer: amix the lucky stiff
" http://amix.dk - amix@amix.dk
"
" Version: 3.3 - 21/01/10 01:05:46
"
" Blog_post:
" http://... |
otherdave/othervim | 943c59336381d9cff3522d35454d97eccc305d84 | Set non-gui windows to light background and desert colorscheme | diff --git a/vimrc b/vimrc
index ea5a4fb..3938be1 100755
--- a/vimrc
+++ b/vimrc
@@ -1,589 +1,589 @@
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Maintainer: amix the lucky stiff
" http://amix.dk - amix@amix.dk
"
" Version: 3.3 - 21/01/10 01:05:46
"
" Blog_post:
" http://... |
otherdave/othervim | 854647c0dad74561c859c9851cb8a1b062a73d25 | commented out some mappings for () and {} that I never used | diff --git a/_gvimrc b/_gvimrc
old mode 100644
new mode 100755
diff --git a/colors/darkspectrum.vim b/colors/darkspectrum.vim
old mode 100644
new mode 100755
diff --git a/colors/davepuff.vim b/colors/davepuff.vim
old mode 100644
new mode 100755
diff --git a/colors/inkpot.vim b/colors/inkpot.vim
old mode 100644
new mode... |
codereflection/clientAccountLocking | 6ce245ae16c919abebeba40099f5c806dee4491e | Fixing references | diff --git a/UnitTests/UnitTests.csproj b/UnitTests/UnitTests.csproj
index ef8d27d..11a9004 100644
--- a/UnitTests/UnitTests.csproj
+++ b/UnitTests/UnitTests.csproj
@@ -1,78 +1,81 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/develo... |
codereflection/clientAccountLocking | b336837da4d4f37c5717ad3f9b70681fcfae2ad9 | Adding ClientAccountLock class and tests | diff --git a/ClientAccountLockingTest/ClientAccount.cs b/ClientAccountLockingTest/ClientAccount.cs
index a7a7580..d8b5b05 100644
--- a/ClientAccountLockingTest/ClientAccount.cs
+++ b/ClientAccountLockingTest/ClientAccount.cs
@@ -1,12 +1,12 @@
using System;
namespace ClientAccountLockingTest
{
public class ... |
codereflection/clientAccountLocking | 3c5b277e222a41c4e67183201302b93b17d1008b | Increased sleep to 10 seconds | diff --git a/ClientAccountLockingTest/WebService1.asmx.cs b/ClientAccountLockingTest/WebService1.asmx.cs
index 4385910..cb11c5b 100644
--- a/ClientAccountLockingTest/WebService1.asmx.cs
+++ b/ClientAccountLockingTest/WebService1.asmx.cs
@@ -1,82 +1,82 @@
using System;
using System.Collections.Generic;
using Syste... |
codereflection/clientAccountLocking | 5ad744507f7743fa6ddb41afbb3643647cfc88d4 | Renamed web service | diff --git a/ClientAccountLockingTest/WebService1.asmx b/ClientAccountLockingTest/WebService1.asmx
index 57f215c..0b706be 100644
--- a/ClientAccountLockingTest/WebService1.asmx
+++ b/ClientAccountLockingTest/WebService1.asmx
@@ -1 +1 @@
-<%@ WebService Language="C#" CodeBehind="WebService1.asmx.cs" Class="ClientAcco... |
Htbaa/rackspacecloudfiles.mod | 758f85e06344bb36973d65ea05241c2c62a6317f | Version 1.09 | diff --git a/rackspacecloudfiles.bmx b/rackspacecloudfiles.bmx
index 29ab084..b6fc787 100644
--- a/rackspacecloudfiles.bmx
+++ b/rackspacecloudfiles.bmx
@@ -1,236 +1,236 @@
Rem
Copyright (c) 2010 Christiaan Kras
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... |
Htbaa/rackspacecloudfiles.mod | 5d939641319cb6242ed453d1ca7c4df20c9b63c7 | Added check to prevent expiration of authToken | diff --git a/rackspacecloudfiles.bmx b/rackspacecloudfiles.bmx
index d601ffd..29ab084 100644
--- a/rackspacecloudfiles.bmx
+++ b/rackspacecloudfiles.bmx
@@ -1,229 +1,236 @@
Rem
Copyright (c) 2010 Christiaan Kras
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... |
Htbaa/rackspacecloudfiles.mod | ee268369e41ba955eb539c96f6a5c05f3fdcf148 | Support authentication against USA or UK server | diff --git a/rackspacecloudfiles.bmx b/rackspacecloudfiles.bmx
index 820a16c..d601ffd 100644
--- a/rackspacecloudfiles.bmx
+++ b/rackspacecloudfiles.bmx
@@ -1,214 +1,229 @@
Rem
Copyright (c) 2010 Christiaan Kras
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... |
Htbaa/rackspacecloudfiles.mod | 9b403d63a9f7816915daeb7abea180696fa69424 | Now making use of htbaapub.rest responseCode helper methods | diff --git a/container.bmx b/container.bmx
index c041e62..c51ef1b 100644
--- a/container.bmx
+++ b/container.bmx
@@ -1,144 +1,138 @@
Rem
Copyright (c) 2010 Christiaan Kras
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Sof... |
Htbaa/rackspacecloudfiles.mod | d9b8a5157dbc888a0f6e5c73089a33b3ad4f53df | No more generated documetation | diff --git a/.gitignore b/.gitignore
index 1e567ed..387ef66 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,8 +1,9 @@
*.o
*.i
*.s
*.a
*.exe
*.bmx.bak
examples/credentials.txt
-examples/*.dll
\ No newline at end of file
+examples/*.dll
+doc/*.html
diff --git a/doc/commands.html b/doc/commands.html
deleted file mod... |
Htbaa/rackspacecloudfiles.mod | e86d78d9589502dd32d456e1f396ae9169eb2cda | Added license | diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..dbaaca8
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,19 @@
+Copyright (c) 2010 Christiaan Kras
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in t... |
Htbaa/rackspacecloudfiles.mod | d320ef38559a1a42e295b2940911433d9db5adff | Meta Data will be reset upon every call to TRackspaceCloudFileObject._SetAttributesFromResponse() to avoid remains of unwanted meta data | diff --git a/object.bmx b/object.bmx
index 715117b..8629925 100644
--- a/object.bmx
+++ b/object.bmx
@@ -1,287 +1,288 @@
Rem
bbdoc: This type represents an object in Cloud Files
info:
End Rem
Type TRackspaceCloudFileObject
Field _name:String
Field _contentType:String
Field _etag:String
Field _size:Long
... |
Htbaa/rackspacecloudfiles.mod | de42f773b4961048784e014e1887850d1b0f1d93 | Added method to clear all meta data | diff --git a/object.bmx b/object.bmx
index 6985c41..715117b 100644
--- a/object.bmx
+++ b/object.bmx
@@ -1,279 +1,287 @@
Rem
bbdoc: This type represents an object in Cloud Files
info:
End Rem
Type TRackspaceCloudFileObject
Field _name:String
Field _contentType:String
Field _etag:String
Field _size:Long
... |
Htbaa/rackspacecloudfiles.mod | b0ff9299d3ae7326f19e284faf49aaf1a65a1aba | Meta Data can be updated now separate from uploading | diff --git a/object.bmx b/object.bmx
index a78679c..6985c41 100644
--- a/object.bmx
+++ b/object.bmx
@@ -1,255 +1,279 @@
Rem
bbdoc: This type represents an object in Cloud Files
info:
End Rem
Type TRackspaceCloudFileObject
Field _name:String
Field _contentType:String
Field _etag:String
Field _size:Long
... |
Htbaa/rackspacecloudfiles.mod | b38e2b5cfefab9cd075aa67c2b2c26faa08e6332 | Added private method for preparing meta data for transfer | diff --git a/object.bmx b/object.bmx
index 2107ad3..a78679c 100644
--- a/object.bmx
+++ b/object.bmx
@@ -1,248 +1,255 @@
Rem
bbdoc: This type represents an object in Cloud Files
info:
End Rem
Type TRackspaceCloudFileObject
Field _name:String
Field _contentType:String
Field _etag:String
Field _size:Long
... |
Htbaa/rackspacecloudfiles.mod | f05c96d7dc76f2fc9827edec489c65009dce236f | TRackspaceCloudFileObject.PutFile() now also updates meta data | diff --git a/object.bmx b/object.bmx
index dda21ec..2107ad3 100644
--- a/object.bmx
+++ b/object.bmx
@@ -1,233 +1,248 @@
Rem
bbdoc: This type represents an object in Cloud Files
info:
End Rem
Type TRackspaceCloudFileObject
Field _name:String
Field _contentType:String
Field _etag:String
Field _size:Long
... |
Htbaa/rackspacecloudfiles.mod | 4eb6f63187bd47d821a9098498ec82fce18afa8a | Meta Data of an existing object will now be read and stored inside a TMap, which can later be retrieved. | diff --git a/object.bmx b/object.bmx
index c076e8a..dda21ec 100644
--- a/object.bmx
+++ b/object.bmx
@@ -1,203 +1,233 @@
Rem
bbdoc: This type represents an object in Cloud Files
info:
End Rem
Type TRackspaceCloudFileObject
Field _name:String
Field _contentType:String
Field _etag:String
Field _size:Long
... |
Htbaa/rackspacecloudfiles.mod | 5c6a82c8cc9f9b7124aaee904f0c64eb26ec69ee | Now using htbaapub.rest to handle all the HTTP requests. | diff --git a/README b/README
index 69555e2..7f0d179 100644
--- a/README
+++ b/README
@@ -1,9 +1,9 @@
This module allows you to interact with your account for Rackspacecloud Files.
This module requires the following external modules:
- * bah.libcurlssl
+ * htbaapub.rest (>=1.00)
* bah.crypto (>=1.02)
(Both BaH... |
Htbaa/rackspacecloudfiles.mod | 4e01eee37a01ba8fadac13db48e7c8dcf2493267 | added .gitignore | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1e567ed
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+*.o
+*.i
+*.s
+*.a
+*.exe
+*.bmx.bak
+examples/credentials.txt
+examples/*.dll
\ No newline at end of file
|
Htbaa/rackspacecloudfiles.mod | a36139ceebd1a601e05154d4107913b6c90e3cd3 | URL Encoding/Decoding refactoring | diff --git a/container.bmx b/container.bmx
index 18ea5af..7094415 100644
--- a/container.bmx
+++ b/container.bmx
@@ -1,118 +1,118 @@
Rem
bbdoc: This type represents a container in Cloud Files
about:
End Rem
Type TRackspaceCloudFilesContainer
Field _name:String
Field _rackspace:TRackspaceCloudFiles
Field _u... |
Htbaa/rackspacecloudfiles.mod | ee9324b44ff0819fac8acc862e0ce1cb8b0dd45f | Critical bugfix in creating the upload URL for TRackspaceCloudFileObject | diff --git a/object.bmx b/object.bmx
index 562b84b..8158f2e 100644
--- a/object.bmx
+++ b/object.bmx
@@ -1,195 +1,199 @@
Rem
bbdoc: This type represents an object in Cloud Files
info:
End Rem
Type TRackspaceCloudFileObject
Field _name:String
Field _contentType:String
Field _etag:String
Field _size:Long
... |
Htbaa/rackspacecloudfiles.mod | baa0682b1ff5a503a090c41e9c1f6b69fd992971 | It's now possible to set a progressCallback to keep track of a upload or download | diff --git a/rackspacecloudfiles.bmx b/rackspacecloudfiles.bmx
index 747e903..57cf21b 100644
--- a/rackspacecloudfiles.bmx
+++ b/rackspacecloudfiles.bmx
@@ -1,333 +1,351 @@
SuperStrict
Rem
bbdoc: htbaapub.rackspacecloudfiles
EndRem
Module htbaapub.rackspacecloudfiles
ModuleInfo "Name: htbaapub.rackspacecloudfi... |
Htbaa/rackspacecloudfiles.mod | 68fdad8d7daf7c308f6fb4ce96fcd6030911ae75 | bah.crypto version 1.02 or higher is now required since it supports generating the MD5 hash for a TStream | diff --git a/README b/README
index dc035b2..69555e2 100644
--- a/README
+++ b/README
@@ -1,9 +1,9 @@
This module allows you to interact with your account for Rackspacecloud Files.
This module requires the following external modules:
* bah.libcurlssl
- * bah.crypto
+ * bah.crypto (>=1.02)
(Both BaH modules can... |
Htbaa/rackspacecloudfiles.mod | 2c75efc78f92f5a5796dba2b8403a5341d8ea7b1 | Documentation update | diff --git a/doc/commands.html b/doc/commands.html
index 5e5e0be..dbeae9c 100644
--- a/doc/commands.html
+++ b/doc/commands.html
@@ -1,312 +1,313 @@
<html><head><title>htbaapub.rackspacecloudfiles reference</title>
<link rel=stylesheet Type=text/css href='../../../../doc/bmxstyle.css'>
</head><body>
<table width=10... |
Htbaa/rackspacecloudfiles.mod | 224864d2f8381da31ea5bd01d57f40efcff59913 | The query string in TRackspaceCloudFilesContainer.Objects() is now URL Encoded | diff --git a/container.bmx b/container.bmx
index 8076783..18ea5af 100644
--- a/container.bmx
+++ b/container.bmx
@@ -1,118 +1,118 @@
Rem
bbdoc: This type represents a container in Cloud Files
about:
End Rem
Type TRackspaceCloudFilesContainer
Field _name:String
Field _rackspace:TRackspaceCloudFiles
Field _u... |
Htbaa/rackspacecloudfiles.mod | 8e0b5f3de883ca193c38acc08f7178fcc4eb703c | The query string in TRackspaceCloudFiles.Containers() is now URL Encoded | diff --git a/rackspacecloudfiles.bmx b/rackspacecloudfiles.bmx
index 0b15f02..1966ddb 100644
--- a/rackspacecloudfiles.bmx
+++ b/rackspacecloudfiles.bmx
@@ -1,333 +1,333 @@
SuperStrict
Rem
bbdoc: htbaapub.rackspacecloudfiles
EndRem
Module htbaapub.rackspacecloudfiles
ModuleInfo "Name: htbaapub.rackspacecloudfi... |
Htbaa/rackspacecloudfiles.mod | 447a1def8c6b70c0fa6bf0b3b9afff5d0d5bce49 | Object filenames are now URL Encoded | diff --git a/object.bmx b/object.bmx
index 996a1c3..fbe1d2b 100644
--- a/object.bmx
+++ b/object.bmx
@@ -1,189 +1,194 @@
Rem
bbdoc: This type represents an object in Cloud Files
info:
End Rem
Type TRackspaceCloudFileObject
Field _name:String
Field _contentType:String
Field _etag:String
Field _size:Long
... |
Htbaa/rackspacecloudfiles.mod | 2d978b0b1634a0f86e69be3e1599a59fdfe16526 | Mosso changed its name to Rackspacecloud so the module has been completely renamed. Version 1.00 ready! | diff --git a/README b/README
new file mode 100644
index 0000000..b0a132a
--- /dev/null
+++ b/README
@@ -0,0 +1,9 @@
+This module allows you to interact with your account for Mosso Cloud Files.
+This module requires the following external modules:
+
+ * bah.libcurlssl
+ * bah.crypto
+
+ (Both BaH modules can be found at... |
scronide/scuttle | 9ce0bb50d2e8288c22e9cb801a2168b2c76a070c | - Updated default filetypes used for system tags - Added support for RSS media enclosures - Restricted registration fields to match DB limits - Updated debug mode activation - Updated form style - Minor code style updates | diff --git a/AUTHORS b/AUTHORS
index 998ffe8..232a9cf 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,17 +1,20 @@
Scuttle contains code from the following open-source projects:
+Drupal
+http://www.drupal.org/
+
jQuery
http://www.jquery.com/
phpBB2 (database abstraction layer)
http://www.phpbb.com/
php-gettext
Dan... |
scronide/scuttle | 616df7459a1262dc55320ee60cc74dae9d878ab3 | - Override privacy status on bookmark file import, if specified (i.e. Delicious) - Set tags on bookmark file import, if specified (i.e. Delicious) | diff --git a/import.php b/import.php
index 2af25d0..9f29728 100644
--- a/import.php
+++ b/import.php
@@ -1,108 +1,112 @@
<?php
/***************************************************************************
Copyright (c) 2004 - 2006 Marcus Campbell
http://scuttle.org/
This program is free software; you can redistri... |
scronide/scuttle | d297e7b43dff2c97f05ca2802f150d51c31bfcb3 | Bumped version numver | diff --git a/readme.txt b/readme.txt
index 01efe57..fdbd954 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,16 +1,15 @@
-Scuttle 0.7.5
-http://sourceforge.net/projects/scuttle/
+Scuttle 0.8.0
http://scuttle.org/
Copyright (C) 2004 - 2010 Scuttle project
Available under the GNU General Public License
============... |
scronide/scuttle | 6ff691979dd906ff4b4c70b3e5e1bbd4d906b87b | - .htaccess yoinked from Drupal - Minor CSS tweaks | diff --git a/.htaccess b/.htaccess
index de83899..cba1f4d 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,12 +1,95 @@
-# Rewrite clean URLs onto real files
+#
+# Apache/PHP settings for Scuttle
+#
+
+# Don't show directory listings for URLs which map to a directory.
+Options -Indexes
+
+# Follow symbolic links in this dir... |
scronide/scuttle | a52e94e7d37efbd5356bb8a5b65f577e8500aed5 | - Allow blacklisting and whitelisting of e-mail addresses used for new user accounts - Added hash to the registration form to prevent CRSF - Added password confirmation to registration form - Update jQuery to 1.4.4 | diff --git a/config.inc.php.example b/config.inc.php.example
index 1db84c2..a355bfa 100644
--- a/config.inc.php.example
+++ b/config.inc.php.example
@@ -1,119 +1,139 @@
<?php
######################################################################
# SCUTTLE: Online social bookmarks manager
###########################... |
scronide/scuttle | bce919af7b49bbd06223f79b8c37a53a3d263ff0 | * Fixed REG_BADRPT error in isValidEmail() that prevented registration * Merged cookie fix from trunk * Set body background to white * Removed poor seed from _randompassword() * Minor fix to updateBookmark() | diff --git a/.htaccess b/.htaccess
index af3cae9..89f6dfd 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,10 +1,13 @@
+# Rewrite clean URLs onto real files
+<IfModule mod_rewrite.c>
Options +FollowSymlinks
<IfDefine APACHE2>
AcceptPathInfo On
</IfDefine>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILE... |
scronide/scuttle | cd5cb72f09ebcc2379d7f92fc00f6e62f221b658 | branches/version-0.7: * Updated readme * Set mysql as default DB type | diff --git a/config.inc.php.example b/config.inc.php.example
index c78f361..71e6406 100644
--- a/config.inc.php.example
+++ b/config.inc.php.example
@@ -1,120 +1,120 @@
<?php
######################################################################
# SCUTTLE: Online social bookmarks manager
###########################... |
scronide/scuttle | 7138fee281c6e11cfef6c669c4b3daab329f8850 | trunk, branches/version-0.7: * Changed LC_MESSAGES to LC_ALL trunk: * Changed regex from eregi to preg_match in isValidEmail * Updated tables.sql * Added jQuery * Added prelim Atom feed template * Updated DB abstraction layer to latest phpBB code - Note: Breaks lots of code! * Updated config.inc.php.example | diff --git a/functions.inc.php b/functions.inc.php
index 63b789a..b22747e 100644
--- a/functions.inc.php
+++ b/functions.inc.php
@@ -1,160 +1,160 @@
<?php
// UTF-8 functions
require_once(dirname(__FILE__) .'/includes/utf8.php');
// Translation
require_once(dirname(__FILE__) .'/includes/php-gettext/gettext.inc');... |
scronide/scuttle | 270046795d391a18ef69609b317febe8aec6facb | * Updated isValidEmail regex to match plussed addresses | diff --git a/services/userservice.php b/services/userservice.php
index 1e7ed46..82abaf0 100644
--- a/services/userservice.php
+++ b/services/userservice.php
@@ -1,362 +1,362 @@
<?php
class UserService {
var $db;
function &getInstance(&$db) {
static $instance;
if (!isset($instance))
... |
scronide/scuttle | 5bcd594660941b2d4560da70788be17b52ef68eb | Trunk, 0.7: Add patch [ 1597978 ] Missing tag rename for 0.7.2 | diff --git a/tagrename.php b/tagrename.php
new file mode 100644
index 0000000..0fd2f1a
--- /dev/null
+++ b/tagrename.php
@@ -0,0 +1,67 @@
+<?php
+/***************************************************************************
+Copyright (C) 2006 Scuttle project
+http://sourceforge.net/projects/scuttle/
+http://scuttle.org... |
johnsonch/northwind | 48e30586a277f50321aacd80aabf69edce47d9d6 | added support for territories and regions | diff --git a/app/models/employee_territories.rb b/app/models/employee_territories.rb
new file mode 100644
index 0000000..5696f49
--- /dev/null
+++ b/app/models/employee_territories.rb
@@ -0,0 +1,5 @@
+class EmployeeTerritories < ActiveRecord::Base
+ set_table_name "EmployeeTerritories"
+ belongs_to :employee, :class_... |
johnsonch/northwind | 6acb6c3f6afeefee99d6ad770c1256a4332c60e6 | trying to add files correctly | diff --git a/app/views/customers/edit.html.erb b/app/views/customers/edit.html.erb
index 57ad97a..5d3d46f 100644
--- a/app/views/customers/edit.html.erb
+++ b/app/views/customers/edit.html.erb
@@ -1,12 +1,12 @@
<h1>Editing customer</h1>
<% form_for(@customer) do |f| %>
<%= f.error_messages %>
- <%= render :part... |
johnsonch/northwind | d3c3b8dc87bf1dbc46510af336b6969a751278d3 | added support to set manager for an employee | diff --git a/app/views/employees/_form.html.erb b/app/views/employees/_form.html.erb
new file mode 100644
index 0000000..f32fd9b
--- /dev/null
+++ b/app/views/employees/_form.html.erb
@@ -0,0 +1,50 @@
+ <table>
+ <tr>
+ <td width="100px;">Name:</td>
+ <td><%= f.text_field :FirstName %> <%= f.text_field :LastName %... |
johnsonch/northwind | 0f4211bfe3bcb3c694d6b14849c8225cb8eddbad | adding files | diff --git a/app/controllers/orders_controller.rb b/app/controllers/orders_controller.rb
new file mode 100644
index 0000000..eba6175
--- /dev/null
+++ b/app/controllers/orders_controller.rb
@@ -0,0 +1,85 @@
+class OrdersController < ApplicationController
+ # GET /orders
+ # GET /orders.xml
+ def index
+ @orders =... |
devyn/ensei | 879bba92f7368e723762381922b6e2137a5fcb6d | +x to scripts | diff --git a/app/views/main/index.html.erb b/app/views/main/index.html.erb
index c233207..f865c5c 100644
--- a/app/views/main/index.html.erb
+++ b/app/views/main/index.html.erb
@@ -1,20 +1,20 @@
-<% themes = ["main", "red"] %>
+<% themes = ["main", "red", "yellow"] %>
<html>
<head>
<title>Ensei Webtop</tit... |
devyn/ensei | bcfe9909e6bbcdf5cb32b0915a8bd0408486af4e | yellow theme | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..efaec30
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+log/*
+db/*.sqlite3
+
diff --git a/public/images/background_yellow.gif b/public/images/background_yellow.gif
new file mode 100644
index 0000000..42ec57b
Binary files /dev/null and b/public/im... |
devyn/ensei | 54824d5e6f9ac7f57fa131a4c8b2615474a0e1be | css fix | diff --git a/public/stylesheets/red.css b/public/stylesheets/red.css
index 1876449..eafae06 100644
--- a/public/stylesheets/red.css
+++ b/public/stylesheets/red.css
@@ -1,118 +1,121 @@
body {
background-image: url(/images/background_red.gif);
background-color: darkred;
color: white;
font-family: Verdan... |
devyn/ensei | 00c44739d4eb1d89eaf3ea92abfc8fafa7fec5f0 | add copyright to README | diff --git a/README b/README
index ebffbb4..2531384 100644
--- a/README
+++ b/README
@@ -1,19 +1,20 @@
=============== Ensei ===============
== a webtop entirely in ruby/rails ==
+Copyright (C) 2008 Devyn Cairns.
1. What's a webtop?
It's basically a desktop on the internet. That's Ensei's goal.
For more, go to h... |
devyn/ensei | d80c670be8acfa56d7734d38ab83ef68145faba1 | Ensei: started working on file storage. | diff --git a/app/controllers/dfs_controller.rb b/app/controllers/dfs_controller.rb
index a85a28d..6836e52 100644
--- a/app/controllers/dfs_controller.rb
+++ b/app/controllers/dfs_controller.rb
@@ -1,115 +1,116 @@
require 'digest/sha2'
class DfsController < ApplicationController
def client
if params[:format] == '... |
devyn/ensei | 0fea6df67afab4d389a590630274ab28adf893e3 | Ensei: css font cleanup | diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css
index 1b990cf..bb94a6f 100644
--- a/public/stylesheets/main.css
+++ b/public/stylesheets/main.css
@@ -1,118 +1,118 @@
body {
background-image: url(/images/background_blue.gif);
background-color: darkblue;
color: white;
- font-family: ... |
devyn/ensei | 0feb6c9eb3d8cc2f78dbdcdbff097785f25b1b6f | Ensei: Code clean for deprecated features. | diff --git a/public/javascripts/ensei.js b/public/javascripts/ensei.js
index 42ef951..8b71aba 100644
--- a/public/javascripts/ensei.js
+++ b/public/javascripts/ensei.js
@@ -1,132 +1,125 @@
// Ensei window framework
document.windows = new Hash({});
function openService(uri, title) {
var wid;
var succ... |
devyn/ensei | 8df3ca2cc485742b4f91630c9dca3feb8ce1725e | Ensei: Preparing for file storage support. Added Z3 library. | diff --git a/app/controllers/files_controller.rb b/app/controllers/files_controller.rb
new file mode 100644
index 0000000..4970192
--- /dev/null
+++ b/app/controllers/files_controller.rb
@@ -0,0 +1,2 @@
+class FilesController < ApplicationController
+end
diff --git a/app/helpers/files_helper.rb b/app/helpers/files_help... |
devyn/ensei | 3f01de71677ed5abde9ebf2449efe7608c042fcc | Ensei: Updated to Rails 2.1 | diff --git a/config/environment.rb b/config/environment.rb
index 1ee07ce..bc603cf 100644
--- a/config/environment.rb
+++ b/config/environment.rb
@@ -1,60 +1,59 @@
# Be sure to restart your server when you modify this file
-UserTokens = {}
# Uncomment below to force Rails into production mode when
# you don't contr... |
devyn/ensei | 88866abd4825f9cabe0f2e0a9b92bcdde6db813b | Ensei: added easy theming | diff --git a/app/views/main/index.html.erb b/app/views/main/index.html.erb
index ee95795..c233207 100644
--- a/app/views/main/index.html.erb
+++ b/app/views/main/index.html.erb
@@ -1,19 +1,20 @@
+<% themes = ["main", "red"] %>
<html>
<head>
<title>Ensei Webtop</title>
- <%= stylesheet_link_tag (params['the... |
devyn/ensei | c1bb57b3ee0a01ed55495ca8e37c8f4c904480f6 | Ensei: Resh related updates and documentation. | diff --git a/app/controllers/main_controller.rb b/app/controllers/main_controller.rb
index d784b80..61a4633 100644
--- a/app/controllers/main_controller.rb
+++ b/app/controllers/main_controller.rb
@@ -1,32 +1,36 @@
class MainController < ApplicationController
after_filter :choose_content_type
def index;end
# sam... |
devyn/ensei | a8890a89aae0578683c9f2adce48197f657eaa03 | Ensei skinning update. | diff --git a/app/views/main/index.html.erb b/app/views/main/index.html.erb
index ab19c10..242804d 100644
--- a/app/views/main/index.html.erb
+++ b/app/views/main/index.html.erb
@@ -1,17 +1,17 @@
<html>
<head>
<title>Ensei Webtop</title>
- <%= stylesheet_link_tag 'main' %>
+ <%= stylesheet_link_tag (params[... |
devyn/ensei | 15c8ed2acfc48a981b9a37ee5ae625aa3591de28 | scrapped Slang | diff --git a/log/development.log b/log/development.log
index 6d96c18..191dbed 100644
--- a/log/development.log
+++ b/log/development.log
@@ -8849,512 +8849,611 @@ Completed in 0.01500 (66 reqs/sec) | Rendering: 0.01500 (100%) | DB: 0.00000 (0%
Processing MainController#index (for 127.0.0.1 at 2008-04-12 20:21:19) [... |
devyn/ensei | 1dc9d82a67f5828fa20f88da040d2c1338d0d265 | ensei log update, slang first revision. | diff --git a/log/development.log b/log/development.log
index dfd8d9e..6d96c18 100644
--- a/log/development.log
+++ b/log/development.log
@@ -8666,512 +8666,695 @@ Completed in 0.01600 (62 reqs/sec) | Rendering: 0.00000 (0%) | DB: 0.00000 (0%)
Processing MainController#terminal (for 127.0.0.1 at 2008-04-12 18:54:... |
devyn/ensei | 6b1c64802d6366b155eace0bd71eb80942524c1c | Ensei terminal and permanent links (plinks) are working now. To create a plink: Base64.encode64(javascript_code).gsub("\n", ""); then go to /?plink=whatever_the_result_of_that_was | diff --git a/app/controllers/main_controller.rb b/app/controllers/main_controller.rb
index c4c26f6..e21aaa1 100644
--- a/app/controllers/main_controller.rb
+++ b/app/controllers/main_controller.rb
@@ -1,11 +1,12 @@
class MainController < ApplicationController
def index;end
# sample Ensei windows
def rssLoader
... |
devyn/ensei | 852804a217f9dda81d5f0e09d5b78412003e9758 | Ensei update: desktop now works properly, windows move. | diff --git a/app/controllers/main_controller.rb b/app/controllers/main_controller.rb
new file mode 100644
index 0000000..00bf104
--- /dev/null
+++ b/app/controllers/main_controller.rb
@@ -0,0 +1,3 @@
+class MainController < ApplicationController
+ def index;end
+end
diff --git a/app/helpers/main_helper.rb b/app/helpers... |
aliceinwire/abr2gbr | 291e74cc89eb73385b093de3b54496c5ae7805e2 | versione 0.3 | diff --git a/abr2gbr-1.0.2/debian/abr2gbr.1 b/abr2gbr-1.0.2/debian/abr2gbr.1
index d029f98..cedca06 100644
--- a/abr2gbr-1.0.2/debian/abr2gbr.1
+++ b/abr2gbr-1.0.2/debian/abr2gbr.1
@@ -1,16 +1,48 @@
-NAME
- abr2gbr
-
-SYNOPSIS
-
- usage: abr2gbr {file1.abr} ...
-
-DESCRIPTION
- Converts PhotoShop .ABR and ... |
aliceinwire/abr2gbr | 737fcfc9da19ef1a0afe067a71caa993971ca62a | versione 0.2 | diff --git a/abr2gbr-1.0.2/debian/abr2gbr/DEBIAN/control b/abr2gbr-1.0.2/debian/abr2gbr/DEBIAN/control
index 2d78d76..517f230 100644
--- a/abr2gbr-1.0.2/debian/abr2gbr/DEBIAN/control
+++ b/abr2gbr-1.0.2/debian/abr2gbr/DEBIAN/control
@@ -1,11 +1,11 @@
Package: abr2gbr
Version: 1.0.2-1
Architecture: i386
Maintainer: ... |
aliceinwire/abr2gbr | ef38b6bca35f21213fabf6441970856c68ccb2d0 | versione 0.1 | diff --git a/abr2gbr-1.0.2/debian/abr2gbr.1 b/abr2gbr-1.0.2/debian/abr2gbr.1
new file mode 100644
index 0000000..d029f98
--- /dev/null
+++ b/abr2gbr-1.0.2/debian/abr2gbr.1
@@ -0,0 +1,16 @@
+NAME
+ abr2gbr
+
+SYNOPSIS
+
+ usage: abr2gbr {file1.abr} ...
+
+DESCRIPTION
+ Converts PhotoShop .ABR and Paint Shop... |
aliceinwire/abr2gbr | ed8f94765610615c424653def866647f12cc1b8c | versione 0.0a | diff --git a/abr2gbr-1.0.2/debian/abr2gbr/usr/share/doc/abr2gbr/changelog.Debian.gz b/abr2gbr-1.0.2/debian/abr2gbr/usr/share/doc/abr2gbr/changelog.Debian.gz
new file mode 100644
index 0000000..0c8e1f6
Binary files /dev/null and b/abr2gbr-1.0.2/debian/abr2gbr/usr/share/doc/abr2gbr/changelog.Debian.gz differ
|
aliceinwire/abr2gbr | 187e4d7448a4916c3034da8401f9bd8aa7038e7e | versione 0.0 | diff --git a/abr2gbr-1.0.2/debian/abr2gbr/DEBIAN/control b/abr2gbr-1.0.2/debian/abr2gbr/DEBIAN/control
index c7fa09e..746ab75 100644
--- a/abr2gbr-1.0.2/debian/abr2gbr/DEBIAN/control
+++ b/abr2gbr-1.0.2/debian/abr2gbr/DEBIAN/control
@@ -1,10 +1,10 @@
Package: abr2gbr
-Version: 3.0.8
+Version: 1.0.2-1
Architecture: i3... |
aliceinwire/abr2gbr | d0192e7d7a19c2007861bd9e7b8aa95ed4945f57 | versione 0.00a | diff --git a/abr2gbr-1.0.2.tgz b/abr2gbr-1.0.2.tgz
new file mode 100644
index 0000000..6f944f1
Binary files /dev/null and b/abr2gbr-1.0.2.tgz differ
diff --git a/abr2gbr-1.0.2/.obj/abr2gbr b/abr2gbr-1.0.2/.obj/abr2gbr
new file mode 100755
index 0000000..c57afa4
Binary files /dev/null and b/abr2gbr-1.0.2/.obj/abr2gbr di... |
robertbrook/findyourmp | f63853c65c2ed8ca0fce213435695346b258a45c | removing the overwrite logic from the deploy script | diff --git a/config/deploy.rb b/config/deploy.rb
index 6b485d2..9b242cc 100644
--- a/config/deploy.rb
+++ b/config/deploy.rb
@@ -1,399 +1,399 @@
require "rvm/capistrano"
load File.expand_path(File.dirname(__FILE__) + '/virtualserver/deploy_secrets.rb')
default_run_options[:pty] = true
set :repository, "git://g... |
robertbrook/findyourmp | a3c224ef7c99cd3d18b6e0192815a083289c0a51 | added magic incantations to make capistrano work again | diff --git a/Gemfile b/Gemfile
index d5965ff..4301fe2 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,33 +1,35 @@
source "http://rubygems.org"
gem 'rake', '10.1.0'
gem 'rails', '2.3.17'
gem 'rdoc'
gem 'haml', '3.1.8'
gem 'authlogic', '2.1.9'
gem 'friendly_id', '2.3.4', :require => "friendly_id"
gem 'xss_terminate'
... |
robertbrook/findyourmp | 7a76ff735e4ca6d9298954a5f94a2e5983d16809 | rake version in gemfile | diff --git a/Gemfile b/Gemfile
index 4b8eaa3..d5965ff 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,33 +1,33 @@
source "http://rubygems.org"
-gem 'rake'
+gem 'rake', '10.1.0'
gem 'rails', '2.3.17'
gem 'rdoc'
gem 'haml', '3.1.8'
gem 'authlogic', '2.1.9'
gem 'friendly_id', '2.3.4', :require => "friendly_id"
gem 'xss_... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.