This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| JSON::GeneratorError (source sequence is illegal/malformed): | |
| /home/zork/.gem/ruby/1.8/gems/activerecord-2.2.2/lib/active_record/serializers/json_serializer.rb:70:in `to_json' | |
| /home/zork/.gem/ruby/1.8/gems/activerecord-2.2.2/lib/active_record/serializers/json_serializer.rb:70:in `serialize' | |
| /home/zork/.gem/ruby/1.8/gems/activerecord-2.2.2/lib/active_record/serialization.rb:91:in `to_s' | |
| /home/zork/.gem/ruby/1.8/gems/activerecord-2.2.2/lib/active_record/serializers/json_serializer.rb:57:in `to_json' | |
| /app/models/event.rb:1305:in `to_json' | |
| /app/controllers/rss_controller.rb:127:in `feed' | |
| /home/zork/.gem/ruby/1.8/gems/actionpack-2.2.2/lib/action_controller/mime_responds.rb:135:in `call' | |
| /home/zork/.gem/ruby/1.8/gems/actionpack-2.2.2/lib/action_controller/mime_responds.rb:135:in `custom' | |
| /home/zork/.gem/ruby/1.8/gems/actionpack-2.2.2/lib/action_controller/mime_responds.rb:164:in `call' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| <!--// | |
| document.observe("dom:loaded", function() { | |
| loadBox(); | |
| <% if open_print_dialog? %> | |
| print(); | |
| <% end %> | |
| <% if session[:open_login_popup] %> | |
| showLoginBox($('loginAllvoices')); | |
| $('redirectUrl').value = '<%= session[:return_url] if session[:return_url] %>'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #see global.css around line 1300 for all available CSS button options | |
| def graphic_button(params) | |
| className = (!params[:class].nil?) ? params[:class] : "" # if no classname, default to ?? | |
| if className == "" | |
| className = (!params[:buttonStyle].nil?) ? params[:buttonStyle] : "graphicBtnSmall" | |
| className = (!params[:buttonColor].nil?) ? className + " " + params[:buttonColor] + className.classify : className | |
| className = (!params[:extraClass].nil?) ? className + " " + params[:extraClass] : className | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| while [ "$*" ]; do | |
| case $1 in | |
| -pre*) | |
| XXX_PRE_ARGS=( $XXX_PRE_ARGS "$2" ) | |
| ;; | |
| -post*) | |
| XXX_POST_ARGS=( $XXX_POST_ARGS "$2" ) | |
| ;; |
OlderNewer