repo
string
commit
string
message
string
diff
string
theflow/deployed_at
70777c7c6e483b5070d46a76c9133fd1b7c9001e
fix archive view for multiple years
diff --git a/deployed_at.rb b/deployed_at.rb index ec8ba4c..893a8a2 100644 --- a/deployed_at.rb +++ b/deployed_at.rb @@ -1,255 +1,255 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' require 'net/smtp' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") enable...
theflow/deployed_at
8738c149f0f2ac7825fa2d9b05883b2b58198acd
added an archive view for projects.
diff --git a/deployed_at.rb b/deployed_at.rb index 764c5d0..ec8ba4c 100644 --- a/deployed_at.rb +++ b/deployed_at.rb @@ -1,222 +1,255 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' require 'net/smtp' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") enable...
theflow/deployed_at
c848fdb8733cf19e11882cba372fef8c45afc1a3
use rack/test with webrat, the sinatra mode is deprecated
diff --git a/test/test_helper.rb b/test/test_helper.rb index 0978e8a..2e83bcb 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,47 +1,42 @@ $: << File.join(File.dirname(__FILE__), '..') require 'rubygems' require 'context' require 'mocha' -require 'webrat' require 'deployed_at' -Webrat.confi...
theflow/deployed_at
b2fc4c774488a605682ec82c4d1efe4f573645eb
use factory methods also in the model tests
diff --git a/test/test_models.rb b/test/test_models.rb index 2161ed7..688bd25 100644 --- a/test/test_models.rb +++ b/test/test_models.rb @@ -1,78 +1,94 @@ require File.join(File.dirname(__FILE__), 'test_helper') class DeployTest < Test::Unit::TestCase + def setup + repository(:default) do + transaction = D...
theflow/deployed_at
3812d68fa3dc979e42e0a6b7b7b0ce6eec903b91
added webrat.log to gitignore
diff --git a/.gitignore b/.gitignore index 24cbc37..5ed2878 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ database.sqlite3 config.yml +webrat.log .DS_Store
theflow/deployed_at
36ea41248eb01610da90ae415e737ee36d36b084
added some basic acceptance tests using webrat
diff --git a/test/test_helper.rb b/test/test_helper.rb index 2e83bcb..0978e8a 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,42 +1,47 @@ $: << File.join(File.dirname(__FILE__), '..') require 'rubygems' require 'context' require 'mocha' +require 'webrat' require 'deployed_at' +Webrat.confi...
theflow/deployed_at
edaec6d0fb237ba84584fcc8ad931be6f5856847
correctly mark the checkbox as checked
diff --git a/views/subscriptions_list.erb b/views/subscriptions_list.erb index 4551d59..04fc67c 100644 --- a/views/subscriptions_list.erb +++ b/views/subscriptions_list.erb @@ -1,18 +1,18 @@ <div class="span-22 prepend-1 append-1 prepend-top"> <h4>Whenever a deploy is recorded for one of your subscribed projects, y...
theflow/deployed_at
15ecb0f7f66971c789c5805a334f6720b3c9c76c
some basic factory methods for tests
diff --git a/test/test_helper.rb b/test/test_helper.rb index 48d75e0..2e83bcb 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,7 +1,42 @@ $: << File.join(File.dirname(__FILE__), '..') require 'rubygems' require 'context' require 'mocha' require 'deployed_at' + + +def create_user(attributes = {}...
theflow/deployed_at
6eb07d883c42e3877b394ef809a8f1f2f02bbf75
added rackup file
diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..f2539af --- /dev/null +++ b/config.ru @@ -0,0 +1,3 @@ +require 'deployed_at' + +run Sinatra::Application
theflow/deployed_at
6ff3e3042cc78fcf16c3221d0086bd6207c820fd
a little bit of styling love
diff --git a/views/session_show.erb b/views/session_show.erb index 10a4641..9e6f417 100644 --- a/views/session_show.erb +++ b/views/session_show.erb @@ -1,5 +1,5 @@ <form action="/session" method="post"> - <label for="email">Email address:</label> + <label for="email">Your email address:</label> <input id="email"...
theflow/deployed_at
1312c6f9db7735e1d18532ad1000a3184a724295
added a dashboard overview page
diff --git a/deployed_at.rb b/deployed_at.rb index f1532af..764c5d0 100644 --- a/deployed_at.rb +++ b/deployed_at.rb @@ -1,224 +1,222 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' require 'net/smtp' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") enable...
theflow/deployed_at
6524d956a8d07bea4e62c83f26f1ac29e06f7039
ignore config.yml files
diff --git a/.gitignore b/.gitignore index de6cb5d..24cbc37 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ database.sqlite3 +config.yml .DS_Store
theflow/deployed_at
5026a70c29d704c923103998d22fc40c17a89948
send an email to all subscribers of a project
diff --git a/config.example.yml b/config.example.yml new file mode 100644 index 0000000..59e5b13 --- /dev/null +++ b/config.example.yml @@ -0,0 +1,6 @@ +smtp_settings: + host: your.mailserver.com + port: 25 + auth: :login + user: account_name + pass: account_password diff --git a/deployed_at.rb b/deployed_at.rb in...
theflow/deployed_at
2901c712c7b38570f99407b5963b0c1d1f8f5097
this param actually changed a while ago
diff --git a/client.rb b/client.rb index e6f72ee..aa8d712 100644 --- a/client.rb +++ b/client.rb @@ -1,24 +1,24 @@ #!/usr/bin/ruby require 'net/http' require 'uri' require 'cgi' class DeployedItClient def initialize(service_root) @service_root = service_root end def new_deploy(user, title) d...
theflow/deployed_at
995a35facda65289b6819bf5761c35b4cbb84f8b
use a before filter to load projects
diff --git a/deployed_at.rb b/deployed_at.rb index 6783ea4..605de52 100644 --- a/deployed_at.rb +++ b/deployed_at.rb @@ -1,169 +1,171 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") enable :sessions class ...
theflow/deployed_at
672000ad86909eaebe88cf0a2ac880bba0b9c9b9
renamed views to be more uniform
diff --git a/deployed_at.rb b/deployed_at.rb index 74cc0a9..6783ea4 100644 --- a/deployed_at.rb +++ b/deployed_at.rb @@ -1,169 +1,169 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") enable :sessions class ...
theflow/deployed_at
f37fcad43db06899414a108d290240bb6e6e1053
no need to require sinata, these are unit tests only
diff --git a/test/test_helper.rb b/test/test_helper.rb index fcda8b6..180fa65 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,8 +1,6 @@ $: << File.join(File.dirname(__FILE__), '..') require 'rubygems' require 'context' -require 'sinatra' -require 'sinatra/test/unit' require 'deployed_at' diff -...
theflow/deployed_at
1554710f820f6d45d662ead6875db036155869da
make it possible to subscribe and unsubscribe projects
diff --git a/deployed_at.rb b/deployed_at.rb index a73231b..74cc0a9 100644 --- a/deployed_at.rb +++ b/deployed_at.rb @@ -1,156 +1,169 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") enable :sessions class ...
theflow/deployed_at
e607d713bd5a9f5f54807b8ed62ab462831bbf12
improved layout for subscriptions
diff --git a/views/subscriptions_list.erb b/views/subscriptions_list.erb index fbd77be..6deded3 100644 --- a/views/subscriptions_list.erb +++ b/views/subscriptions_list.erb @@ -1,16 +1,13 @@ -<form action="/subscriptions" method="post"> +<div class="span-22 prepend-1 append-1 prepend-top"> + <form action="/subscriptio...
theflow/deployed_at
2ed05baa3fd885c905b7bdf17030eab405a287ba
body margin changed with new blueprint
diff --git a/public/deployed_at.css b/public/deployed_at.css index 22a8e49..ac1b395 100644 --- a/public/deployed_at.css +++ b/public/deployed_at.css @@ -1,23 +1,27 @@ +body { + margin:1.5em 0; +} + #project_nav { margin: 0 0 10px 1px; } #project_nav a { text-decoration: none; background-color: #381392; ...
theflow/deployed_at
d7dc08d68f4d78401da2ff1aca4c89e5783c36ac
new blueprint version
diff --git a/public/blueprint/AUTHORS.textile b/public/blueprint/AUTHORS.textile index 0ecc545..ac81632 100755 --- a/public/blueprint/AUTHORS.textile +++ b/public/blueprint/AUTHORS.textile @@ -1,34 +1,38 @@ h1. Blueprint CSS Framework Authors and Contributors Blueprint is based on the work of many talented people. ...
theflow/deployed_at
0137f975680bb5d29b8da773249cf59a3c74ff03
added subscriptions, a way to get notified about deploys
diff --git a/deployed_at.rb b/deployed_at.rb index a8133c6..a73231b 100644 --- a/deployed_at.rb +++ b/deployed_at.rb @@ -1,126 +1,156 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") enable :sessions class ...
theflow/deployed_at
467abe25dacc22aca93d3d03a42b5d81ca5321e1
added a very simple login mechanism
diff --git a/deployed_at.rb b/deployed_at.rb index 511e56b..a8133c6 100644 --- a/deployed_at.rb +++ b/deployed_at.rb @@ -1,98 +1,126 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") +enable :sessions + class D...
theflow/deployed_at
801eb49e2052e84818e6ced7a0ac27d9ba617eff
yet another rename
diff --git a/deployed_it.rb b/deployed_at.rb similarity index 100% rename from deployed_it.rb rename to deployed_at.rb diff --git a/public/deployed_it.css b/public/deployed_at.css similarity index 100% rename from public/deployed_it.css rename to public/deployed_at.css diff --git a/test/test_helper.rb b/test/test_helpe...
theflow/deployed_at
a7e62561639908044cf085986a44ad48023216bb
set a proper title when none is given
diff --git a/deployed_it.rb b/deployed_it.rb index da4fbe5..511e56b 100644 --- a/deployed_it.rb +++ b/deployed_it.rb @@ -1,93 +1,98 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") class Deploy include Data...
theflow/deployed_at
f83b6329c92d20a1861ae7867bcc9175c93b6e78
store more finegrained infos about each deploy
diff --git a/deployed_it.rb b/deployed_it.rb index f7a91c5..da4fbe5 100644 --- a/deployed_it.rb +++ b/deployed_it.rb @@ -1,87 +1,93 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") class Deploy include Data...
theflow/deployed_at
58035c4023e66aab1925c0c320f0da90a470f688
use standard net/http instead of rest-open-uri
diff --git a/client.rb b/client.rb index 3e97236..e6f72ee 100644 --- a/client.rb +++ b/client.rb @@ -1,32 +1,24 @@ -#!/usr/bin/ruby -rubygems -require 'rest-open-uri' +#!/usr/bin/ruby +require 'net/http' require 'uri' require 'cgi' class DeployedItClient def initialize(service_root) @service_root = service...
theflow/deployed_at
ba8c367c3d6df7007a85f1f4d7f337fad20bd44f
let's do some testing
diff --git a/client.rb b/client.rb index 46fa26a..3e97236 100644 --- a/client.rb +++ b/client.rb @@ -1,32 +1,32 @@ #!/usr/bin/ruby -rubygems require 'rest-open-uri' require 'uri' require 'cgi' class DeployedItClient def initialize(service_root) @service_root = service_root end def form_encoded(ha...
theflow/deployed_at
cd81f6f00e97e03df319579cfbf4e69595148822
moved css styles into seperate file
diff --git a/public/deployed_it.css b/public/deployed_it.css new file mode 100644 index 0000000..22a8e49 --- /dev/null +++ b/public/deployed_it.css @@ -0,0 +1,23 @@ +#project_nav { + margin: 0 0 10px 1px; +} + +#project_nav a { + text-decoration: none; + background-color: #381392; + border: 1px solid #381392; + co...
theflow/deployed_at
57fd051350ae828667a9519a15ac7b7a09a1f900
made the single deploy look a bit nicer
diff --git a/deployed_it.rb b/deployed_it.rb index d1b1398..f7a91c5 100644 --- a/deployed_it.rb +++ b/deployed_it.rb @@ -1,80 +1,87 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") class Deploy include Data...
theflow/deployed_at
590b307aef1e5871ee8cdb8011ddd357e6c28db6
wasn't showing the projects name
diff --git a/views/list_deploys.erb b/views/list_deploys.erb index d284679..204e149 100644 --- a/views/list_deploys.erb +++ b/views/list_deploys.erb @@ -1,10 +1,10 @@ <table> <% @deploys.each_with_index do |deploy, i| %> <tr class="large <%= i % 2 == 0 ? 'even' : '' %>"> <td><a href="/deploys/<%= deploy.id ...
theflow/deployed_at
03d2072cdd8f2abbc696149a10454f9ee1088688
put project navigation into the layout
diff --git a/deployed_it.rb b/deployed_it.rb index 6485596..d1b1398 100644 --- a/deployed_it.rb +++ b/deployed_it.rb @@ -1,69 +1,80 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") class Deploy include Data...
theflow/deployed_at
a90c1d4d540452aed3c11ae1b2406b000e3ed2be
renamed erb templates
diff --git a/deployed_it.rb b/deployed_it.rb index 7c91ac9..6485596 100644 --- a/deployed_it.rb +++ b/deployed_it.rb @@ -1,69 +1,69 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") class Deploy include Data...
theflow/deployed_at
272640a08380dd9a9c160646a46d03eafc1db17b
basic support for multiple projects
diff --git a/deployed_it.rb b/deployed_it.rb index 53c50e4..7c91ac9 100644 --- a/deployed_it.rb +++ b/deployed_it.rb @@ -1,62 +1,69 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") class Deploy include Data...
theflow/deployed_at
a27c978c0c7281df00fb553232c78a8611ec6e14
was only needed in the beginning
diff --git a/deployed_it.rb b/deployed_it.rb index 74dd6f6..53c50e4 100644 --- a/deployed_it.rb +++ b/deployed_it.rb @@ -1,67 +1,62 @@ require 'rubygems' require 'sinatra' require 'dm-core' require 'dm-timestamps' DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/database.sqlite3") class Deploy include Data...
theflow/deployed_at
333128881cd86522aec925862702cbc96133ca59
added changed database name to gitignore
diff --git a/.gitignore b/.gitignore index e5b6a09..de6cb5d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -deployed_it.sqlite3 +database.sqlite3 .DS_Store
rfk/xrcwidgets
b25f02a7805c65ed85d379ef593463e9fe6ea3a3
Add unmaintained notice to readme.
diff --git a/README.md b/README.md new file mode 100644 index 0000000..0e4274c --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ + +Status: Unmaintained +==================== + +[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/) + +I am [no longer actively maintaining this project]...
rfk/xrcwidgets
6f5b61805de72351428e64f92f6c873b4daf6b33
use wx.CallAfter to fire the on_create event
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 29c401a..b6ecc9e 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,519 +1,525 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the MIT license # See the file 'LICENSE.txt' in the main distribution for details. """ ...
rfk/xrcwidgets
73b41fcab63a36d04c5d2ae004725dde1a33d4b8
unbind EVT_WINDOW_CREATE after we're finished with it.
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index f18b5c2..29c401a 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,518 +1,519 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the MIT license # See the file 'LICENSE.txt' in the main distribution for details. """ ...
rfk/xrcwidgets
b104c3ea3ba7147beb0c83e4ef623a9ae42b8c62
fix old usage of self.OnCreate => self.on_create
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 22365f4..f18b5c2 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,520 +1,518 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the MIT license # See the file 'LICENSE.txt' in the main distribution for details. """ ...
rfk/xrcwidgets
da24341223c6c7fecbb7baa4a9ddadf28419deb7
initialisation => creation
diff --git a/ChangeLog.txt b/ChangeLog.txt index 1c8b2aa..069ade3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,21 +1,21 @@ v0.3.0: - * Let XRCWidget subclasses participate in two-phase initialisation + * Let XRCWidget subclasses participate in two-phase creation * this allows you to name an XRCWidg...
rfk/xrcwidgets
01c7bf17c79b568fc33052e29dfd355ddd13cc30
allow XRCWidget subclasses to participate directly in two-phase creation
diff --git a/ChangeLog.txt b/ChangeLog.txt index 7c64b5e..1c8b2aa 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,13 +1,21 @@ +v0.3.0: + + * Let XRCWidget subclasses participate in two-phase initialisation + * this allows you to name an XRCWidget in a 'subclass' attribute of the + XRC file, and have i...
rfk/xrcwidgets
afdfa28627713db02429b8916bb18cf8f93374dd
remove deprecated references to "wxPython" module
diff --git a/examples/demo.py b/examples/demo.py index fae4c87..97b3af1 100644 --- a/examples/demo.py +++ b/examples/demo.py @@ -1,50 +1,51 @@ -from wxPython import wx +import wx from XRCWidgets import XRCApp, XRCDialog + from demo_widgets import DemoPanel # Simple frame to demonstrate the use of menus and to...
rfk/xrcwidgets
2a4663374afec9185ca6e888da8b7c825543e809
add .gitignore file
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e750946 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +*.pyc +*~ +*.swp +build/ +dist/ +MANIFEST
rfk/xrcwidgets
8cb7ecb2a6d921798415c2fd73af7f8595f32814
dont require importability of XRCWidgets from setup.py
diff --git a/ChangeLog.txt b/ChangeLog.txt index fd7cc07..7c64b5e 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,7 +1,13 @@ +v0.2.1: + + * relicensed under the MIT License (I find it simpler than BSD) + * don't require the module to be importable in setup.py + + v0.2.0: * relicensed under the BSD Lice...
rfk/xrcwidgets
2bdf7cb094b92c4605fcd63e16bfc6d225dbedc1
drop code for python < 2.4 and wxPython < 2.6
diff --git a/ChangeLog.txt b/ChangeLog.txt index 4214cb3..fd7cc07 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,6 +1,7 @@ v0.2.0: * relicensed under the BSD License + * dropped support for python < 2.4 and wxPython < 2.6 * "VERSION" and related constants are now "__version__" and friends diff --git...
rfk/xrcwidgets
5dfa894f0e1d41109ba4af9bb32a2346cbafff97
switch to MIT license; plus some file cleanups
diff --git a/ChangeLog.txt b/ChangeLog.txt new file mode 100644 index 0000000..4214cb3 --- /dev/null +++ b/ChangeLog.txt @@ -0,0 +1,6 @@ + + +v0.2.0: + + * relicensed under the BSD License + * "VERSION" and related constants are now "__version__" and friends diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644...
rfk/xrcwidgets
61f33882c991233d0be49ff4a3177ae9979547e4
added README file
diff --git a/README.txt b/README.txt index e69de29..d0bd699 100644 --- a/README.txt +++ b/README.txt @@ -0,0 +1,7 @@ + + XRCWidgets: GUI Toolkit build around wxPython and the XRC file format + +XRC is a wxWidgets standard for describing a GUI in an XML file. This module +provides facilities to easily incorporate GU...
rfk/xrcwidgets
5dc9375d99c5589a551d7c216009423642f74803
git-svn-id: file:///storage/svnroot/software/XRCWidgets/tags/rel_0_1_8@52 5b905b9f-cef6-0310-8904-a74f1b98bbbd
diff --git a/MANIFEST.in b/MANIFEST.in index 03c2c86..bd7e090 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,12 +1,11 @@ include examples/*.py include examples/*.xrc include examples/*.bmp include docs/*.ps include docs/*.pdf -recursive-include tools * recursive-include licence * diff --git a/tools/XR...
rfk/xrcwidgets
2a4e97c76dd17880a1af00d011e7f2e7d9811b30
git-svn-id: file:///storage/svnroot/software/XRCWidgets/tags/rel_0_1_8@51 5b905b9f-cef6-0310-8904-a74f1b98bbbd
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 9daf023..a6a91a2 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,528 +1,528 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
bf231123d302dc593f4ff49b53ab0f19b1731d1a
git-svn-id: file:///storage/svnroot/software/XRCWidgets/trunk@49 5b905b9f-cef6-0310-8904-a74f1b98bbbd
diff --git a/examples/simple.py b/examples/simple.py index 19783be..f90f2e2 100644 --- a/examples/simple.py +++ b/examples/simple.py @@ -1,20 +1,19 @@ -from wxPython import wx from XRCWidgets import XRCApp class SimpleApp(XRCApp): def on_message_change(self,msg): print "MESSAGE IS NOW:", msg.G...
rfk/xrcwidgets
4847d4f95abdecb1adfebdd4f61027091735c4e1
git-svn-id: file:///storage/svnroot/software/XRCWidgets/trunk@48 5b905b9f-cef6-0310-8904-a74f1b98bbbd
diff --git a/MANIFEST.in b/MANIFEST.in index f873ee3..03c2c86 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,11 +1,12 @@ include examples/*.py include examples/*.xrc +include examples/*.bmp include docs/*.ps include docs/*.pdf recursive-include tools * recursive-include licence *
rfk/xrcwidgets
8272835e336814fa2704e7ab02ed419305199c91
git-svn-id: file:///storage/svnroot/software/XRCWidgets/trunk@47 5b905b9f-cef6-0310-8904-a74f1b98bbbd
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 5ecf962..9daf023 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,528 +1,528 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
508499d0d5ca39e4b8b082af876e592ec91d494c
Final preprs for 0.1.6 release
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 97e8b3f..5ecf962 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,528 +1,528 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
44cf633bc06da22b1af06efdca4615c5fadbb585
Bugfixes, testing out toolbar functionality
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index bf1206d..97e8b3f 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,537 +1,531 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
ddded93af646e5793984716e57b8c03dadc3dd99
git-svn-id: file:///storage/svnroot/software/XRCWidgets/trunk@43 5b905b9f-cef6-0310-8904-a74f1b98bbbd
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index b87a57c..bf1206d 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,537 +1,537 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
7e710ac2de174634ace5576c494ca9d5f087c8d3
Bugfixes thanks to Brad
diff --git a/docs/manual.lyx b/docs/manual.lyx index 9b892ef..cff69f6 100644 --- a/docs/manual.lyx +++ b/docs/manual.lyx @@ -1,528 +1,528 @@ #LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass article \language english \inputencoding auto \fontscheme default \graphics defa...
rfk/xrcwidgets
59a7d4416a52bd3a7fb303ac984ac357c68242dd
Moved VERSION info into the module itself
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 6289e6f..b87a57c 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,525 +1,532 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
11709ec174b588ab9a899bc5c00a1bbd1706c957
Reworked the event/action connection code. Made wxMenuItem work by ID, so it works on my Linux box again.
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index ba558fe..6289e6f 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,662 +1,530 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
157c5ea60a8e8c4dc3d8dcb6b5439b49019b460f
Erm, not sure actually...
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 9fa1b4a..ba558fe 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,654 +1,662 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
ab87c79920dd80505be0d4b6483086970a7d3e88
Fixing TODO list
diff --git a/TODO b/TODO index ee72f2d..32aad4c 100644 --- a/TODO +++ b/TODO @@ -1,8 +1,7 @@ * Implement _getChild for more widget types: * toolbars * implement events for the current widget, perhaps using 'self' - * make XRCApp automatically connect on_self_close to destroy
rfk/xrcwidgets
753d377c79bdc9fa501491bc6e549cc6734e8644
Dont call wx* initialisers in pre-initalisation
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 4780591..9fa1b4a 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -56,606 +56,599 @@ class XRCWidget: # Name of the XRC file to load content from # Will be searched for along the default XRC file path # Set at class-l...
rfk/xrcwidgets
fd905eac49ee460ce2420d0ce210e436f29db63f
Fix to recognise menu items with <tab>Ctrl+O style entries
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index e1ceed8..4780591 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,658 +1,661 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
9abd51b772becbf820180c5c5939afda99fc2a24
Bumping version number
diff --git a/setup.py b/setup.py index 97a7da7..647af29 100644 --- a/setup.py +++ b/setup.py @@ -1,55 +1,55 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main distribution for details. # # Distutils Setup Script fo...
rfk/xrcwidgets
bc3f8dbe333bc1374f205622abea12d286cf1c5b
Fix retrieval of menus with underscores
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 935d46f..e1ceed8 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,655 +1,658 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
e13c6596177cfca8cb7fa49fc0e4fde17a631ca5
*** empty log message ***
diff --git a/examples/simple.py b/examples/simple.py index 8143724..4e0c324 100644 --- a/examples/simple.py +++ b/examples/simple.py @@ -1,20 +1,19 @@ from wxPython import wx from XRCWidgets import XRCApp class SimpleApp(XRCApp): def on_message_change(self,msg): print "MESSAGE IS NOW:", msg.G...
rfk/xrcwidgets
88c7b41d215be8f4d047d777bdedded965b1f70f
Small tweaks
diff --git a/TODO b/TODO index bde8a95..ee72f2d 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,8 @@ * Implement _getChild for more widget types: * toolbars + * implement events for the current widget, perhaps using 'self' + * make XRCApp automatically connect on_self_close to destroy + diff --git...
rfk/xrcwidgets
0d0162a772a65489b1cfbfbcd369e924f87b54ea
Removed xml "encoding" attribute, which was causes a nuisance dialog on app startup. Naughty, but hey - they're only examples.
diff --git a/examples/demo.xrc b/examples/demo.xrc index 1e5a4a7..6bc063d 100644 --- a/examples/demo.xrc +++ b/examples/demo.xrc @@ -1,99 +1,99 @@ -<?xml version="1.0" encoding="ANSI_X3.4-1968"?> +<?xml version="1.0" ?> <!-- generated by wxGlade 0.3.3 on Thu Jul 1 23:28:13 2004 --> <resource version="2.3.0.1"> ...
rfk/xrcwidgets
278daf5972b4bd38769b0356e979e171a57f5698
Small fixes.
diff --git a/tools/XRCWidgets-0.1.4.ebuild b/tools/XRCWidgets-0.1.4.ebuild index 56adbd2..1b9f8cd 100644 --- a/tools/XRCWidgets-0.1.4.ebuild +++ b/tools/XRCWidgets-0.1.4.ebuild @@ -1,28 +1,23 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/prea...
rfk/xrcwidgets
ce49acff42df1f864539060b258cb5bf69f1f28d
*** empty log message ***
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 33303cf..f24f6c3 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,640 +1,651 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
50714b9abe99685afeb39045c7b389b6599cd301
*** empty log message ***
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 0aa066f..33303cf 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,623 +1,640 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
251270b75d88d65cb4584dbea753ed2c3c3f4551
*** empty log message ***
diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..81d3727 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,96 @@ + +# +# Simple wrapper Makefile to produce documentation from LyX/LaTeX +# + +## Macro Definitions +# +# The following define the programs to use to generate various documentation ...
rfk/xrcwidgets
3a19eb334f03fa12dab15259fce61058465d1dda
Added "XRCApp" class, for simple application creation.
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 6dcba82..0aa066f 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,589 +1,623 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
68bdf300cef37ac8980169615a5d8fa1fc875e23
Fix ebuild to match portage name-change
diff --git a/tools/XRCWidgets-0.1.3.ebuild b/tools/XRCWidgets-0.1.3.ebuild index 4ac8ce3..823855a 100644 --- a/tools/XRCWidgets-0.1.3.ebuild +++ b/tools/XRCWidgets-0.1.3.ebuild @@ -1,28 +1,28 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/prea...
rfk/xrcwidgets
b0f61c94045231fe53249a7982c2c5d746f35a82
*** empty log message ***
diff --git a/setup.py b/setup.py index c339ebb..89394af 100644 --- a/setup.py +++ b/setup.py @@ -1,55 +1,55 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main distribution for details. # # Distutils Setup Script fo...
rfk/xrcwidgets
a758c1bb7dafc54ea5204c0f987e40e608414846
Re-worked event connection routines to enable widgets for which explicit references are difficult to obtain. Used this to implement <activate> for toolbar buttons.
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index e95adae..6dcba82 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,534 +1,589 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
67aa2b6521fc71f756318eff2a6e89d9791a06d6
Fixes segfault when using replaceInWindow
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index f673126..e95adae 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,544 +1,534 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
c023c8aad81a245391347e478b8817d4be505fc1
Re-worked XML-parsing stuff to store a tree, and quick-lookup dict
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index c2c27d6..f673126 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,521 +1,544 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
a781bb53d8c13f7cd62dfd0bbe3f77376b775f74
Started the official TODO list
diff --git a/TODO b/TODO new file mode 100644 index 0000000..0afc281 --- /dev/null +++ b/TODO @@ -0,0 +1,5 @@ + + + * Track down segfault from multiple calls to replaceInChild (may well + require a debug version of wxGTK) +
rfk/xrcwidgets
43da7b373bbb7a657df5dff80f21424a09adb27d
Added a new example showcasing more complex features. Squashed quite a few bugs in the process, although some still remain.
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index e2bafb7..c2c27d6 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,510 +1,521 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
3e0cb477aa9cb262622ebecafa22ba0e655582f9
New ebuild for v0.1.2
diff --git a/tools/XRCWidgets-0.1.2_alpha1.ebuild b/tools/XRCWidgets-0.1.2_alpha1.ebuild new file mode 100644 index 0000000..c1f4450 --- /dev/null +++ b/tools/XRCWidgets-0.1.2_alpha1.ebuild @@ -0,0 +1,28 @@ +# Copyright 2004, Ryan Kelly +# Released under the terms of the wxWindows Licence, version 3. +# See the file 'l...
rfk/xrcwidgets
ac99ea71f0a120247fd74d447f1ae0b10d7bcdb1
Major new functionality - ability to find children not indexed by XRC. This facility has been used to implement on_activate() for wxMenuItem's
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index a545cce..e2bafb7 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,392 +1,510 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
b90a4e12e7510391378d650f6f3ccc040e393bbc
*** empty log message ***
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 9f610cb..a545cce 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,392 +1,392 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. # See the file 'lincence/preamble.txt' in the main dist...
rfk/xrcwidgets
5f98ac5058c020aa8cbd938327c5fbacb0d3d626
*** empty log message ***
diff --git a/tools/XRCWidgets-0.1.1_alpha1.ebuild b/tools/XRCWidgets-0.1.1_alpha1.ebuild index 4f2b9ab..6786a81 100644 --- a/tools/XRCWidgets-0.1.1_alpha1.ebuild +++ b/tools/XRCWidgets-0.1.1_alpha1.ebuild @@ -1,29 +1,28 @@ # Copyright 2004, Ryan Kelly # Released under the terms of the wxWindows Licence, version 3. #...
rfk/xrcwidgets
7a03fcace38adb2f55dfb37d69ffdf4f3d2663a8
Preparing for initial release!
diff --git a/MANIFEST.in b/MANIFEST.in index c8fe90d..f873ee3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,11 @@ -include examples/* -include docs/* +include examples/*.py +include examples/*.xrc + +include docs/*.ps +include docs/*.pdf + +recursive-include tools * +recursive-include licence * diff --git...
rfk/xrcwidgets
e6e8a6cd47842952ee1e6b56c6638b2569a2c98d
*** empty log message ***
diff --git a/XRCWidgets/utils.py b/XRCWidgets/utils.py index 4abd8d0..31bf940 100644 --- a/XRCWidgets/utils.py +++ b/XRCWidgets/utils.py @@ -1,49 +1,50 @@ """ XRCWidgets.utils: Misc utility classes for XRCWidgets framework """ ## ## Implementation of callable-object currying via 'lcurry' and 'rcurry'...
rfk/xrcwidgets
8ac75b247d29636d97236ad3bee3e678e96b38b4
*** empty log message ***
diff --git a/MANIFEST.in b/MANIFEST.in index e69de29..c8fe90d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -0,0 +1,5 @@ + + +include examples/* +include docs/* + diff --git a/setup.py b/setup.py index 7c52857..617ce01 100644 --- a/setup.py +++ b/setup.py @@ -1,31 +1,36 @@ # # Distutils Setup Script for XRCWidgets ...
rfk/xrcwidgets
4d068eeb0e014c89f0043ad9cf9a8ca9928c590a
*** empty log message ***
diff --git a/setup.py b/setup.py index 7e98934..7c52857 100644 --- a/setup.py +++ b/setup.py @@ -1,31 +1,31 @@ # # Distutils Setup Script for XRCWidgets # from distutils.core import setup NAME = "XRCWidgets" VER_MAJOR = "0" VER_MINOR = "9" VER_REL = "b1" VER_PATCH = "" DESCRIPTION = "XRCWidgets GUI D...
rfk/xrcwidgets
bc082b4fbd5314c1a7192a48fe2825590748d018
*** empty log message ***
diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..e69de29 diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..e69de29 diff --git a/docs/manual.lyx b/docs/manual.lyx index 240c26f..fbbf103 100644 --- a/docs/manual.lyx +++ b/docs/manual.lyx @@ -1,479 +1,479 @@ #LyX 1.3 creat...
rfk/xrcwidgets
e6e6e1c69f8f1d0595aa4bc0b2c93edeb3940900
*** empty log message ***
diff --git a/docs/manual.lyx b/docs/manual.lyx index e581288..240c26f 100644 --- a/docs/manual.lyx +++ b/docs/manual.lyx @@ -1,47 +1,479 @@ #LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass article \language english \inputencoding auto \fontscheme default \graphics defau...
rfk/xrcwidgets
f89f331e4417dfdb18ca70cb5a95c8da4d7c14d3
*** empty log message ***
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index a21c0cc..0bad6b7 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,318 +1,369 @@ """ XRCWidgets: GUI Toolkit build around wxPython and the XRC file format XRC is a wxWidgets standard for describing a GUI in an XML fil...
rfk/xrcwidgets
042e3cd48005c5e08a7cf0aff3edafd46020e7f2
*** empty log message ***
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 4f7e0bd..a21c0cc 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,234 +1,318 @@ """ XRCWidgets: GUI Toolkit build around wxPython and the XRC file format XRC is a wxWidgets standard for describing a GUI in an XML fil...
rfk/xrcwidgets
928729c75643dc0e4ac8c5da711825670a05b9f6
*** empty log message ***
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py index 01d191d..4f7e0bd 100644 --- a/XRCWidgets/__init__.py +++ b/XRCWidgets/__init__.py @@ -1,159 +1,234 @@ """ XRCWidgets: GUI Toolkit build around wxPython and the XRC file format XRC is a wxWidgets standard for describing a GUI in an XML fil...
rfk/xrcwidgets
72b1da3e05ed8146a0467954c32e6f297fe74e09
*** empty log message ***
diff --git a/XRCWidgets/__init__.py b/XRCWidgets/__init__.py new file mode 100644 index 0000000..01d191d --- /dev/null +++ b/XRCWidgets/__init__.py @@ -0,0 +1,159 @@ +""" + + XRCWidgets: GUI Toolkit build around wxPython and the XRC file format + + +XRC is a wxWidgets standard for describing a GUI in an XML file. ...
scrumers/CoreCloud
ba32cca264b636b12ff954e5b1050e28e770b6b4
CloudKit renamed in CoreCloud
diff --git a/README.rdoc b/README.rdoc index 69e94e6..b3ea1fa 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,87 +1,87 @@ == Installation -CloudKit is compiled as a static library, and the easiest way to add it to your project is to use Xcode’s “dependent project” facilities. Here is how: +CoreCloud is compiled...
scrumers/CoreCloud
ac53121a5a5f9e1c546a44b9b9915772dc4afb9d
Various bugs fixed
diff --git a/lib/YAJL-objc/bin/libYAJLIPhone.a b/lib/YAJL-objc/bin/libYAJLIPhone.a deleted file mode 100644 index c0dc478..0000000 Binary files a/lib/YAJL-objc/bin/libYAJLIPhone.a and /dev/null differ diff --git a/lib/YAJL-objc/src/NSObject+YAJL.h b/lib/YAJL-objc/src/NSObject+YAJL.h deleted file mode 100644 index 9e291...
scrumers/CoreCloud
7a0b6104eb55b8408550ae2e0ee24f2b5c8c8743
Stabilisation
diff --git a/lib/touchjson-objc/src/TouchJSON.xcodeproj/Ludovic.pbxuser b/lib/touchjson-objc/src/TouchJSON.xcodeproj/Ludovic.pbxuser index 946a324..3d0171b 100644 --- a/lib/touchjson-objc/src/TouchJSON.xcodeproj/Ludovic.pbxuser +++ b/lib/touchjson-objc/src/TouchJSON.xcodeproj/Ludovic.pbxuser @@ -1,427 +1,452 @@ // !$*...
scrumers/CoreCloud
55b0d098e58736bf6e2fb36b8ca489c87528e7e8
Submodules modified
diff --git a/.gitmodules b/.gitmodules index 74b9d7f..16df91f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,9 @@ [submodule "lib/oauth-objc"] path = lib/oauth-objc url = git@github.com:scrumers/oauth-objc.git [submodule "lib/fbconnect-objc"] path = lib/fbconnect-objc url = git@github.com:scrumers/fbco...
scrumers/CoreCloud
253a63d089c5eb6b437a34ad66d8e7d7e7cf931f
GET requests are working
diff --git a/lib/touchjson-objc/src/TouchJSON.xcodeproj/Ludovic.pbxuser b/lib/touchjson-objc/src/TouchJSON.xcodeproj/Ludovic.pbxuser index ab2879f..946a324 100644 --- a/lib/touchjson-objc/src/TouchJSON.xcodeproj/Ludovic.pbxuser +++ b/lib/touchjson-objc/src/TouchJSON.xcodeproj/Ludovic.pbxuser @@ -1,430 +1,427 @@ // !$*...
scrumers/CoreCloud
2704e48afc9008aedc59f22f87bf40a23e9085f0
.DS_Store removed and ignored
diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 5e3724f..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..496ee2c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/lib/.DS_Store...