initial checkin of full application

This commit is contained in:
ioBridge
2011-03-27 16:56:15 -04:00
parent a36868bc86
commit 740a1b338c
127 changed files with 13777 additions and 0 deletions

View File

@ -0,0 +1 @@
<%= "#{@callback}(" if @callback %><%= raw(@channel_output) %><% if @success %>,"feeds":<%= raw(@feed_output) %>}<% end %><%= ')' if @callback %>

View File

@ -0,0 +1,2 @@
<% if @success %><%= CSV.generate_line @csv_headers %><% @feed_output.each do |feed| %><% row = [] %><% @csv_headers.each do |attr| %><% row.push(feed.send(attr)) %><% end %><%= CSV.generate_line row %><% end %><% else %>-1<% end %>

View File

@ -0,0 +1 @@
<%= render :partial => 'index.json.erb' %>

View File

@ -0,0 +1 @@
<%= render :partial => 'feed/index.json.erb' %>

View File

@ -0,0 +1,2 @@
<%= raw(@channel_output) %><% if @success %>
<%= raw(@feed_output) %></channel><% end %>

View File

@ -0,0 +1,2 @@
<% if @success %><%= CSV.generate_line @csv_headers %><% row = [] %><% @csv_headers.each do |attr| %><% row.push(@feed.send(attr)) %><% end %><%= CSV.generate_line row %><% else %>-1<% end %>