A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Re: Untitled - Stikked
From Scorching Camel, 11 Years ago, written in Ruby.
This paste is a reply to Untitled from Thundering Armadillo - view diff
Embed
  1. require "fotolia/hook"
  2. require "fotolia/reviewboard"
  3.  
  4. module Fotolia
  5.   class PostReview < Hook
  6.     def run(repo, options = {})
  7.       puts "Posting review"
  8.       rb = Reviewboard.new(repo)
  9.       begin
  10.         if review_id = rb.find_review(options[:branch], options[:user])
  11.           rb.update_review(review_id, options[:branch])
  12.           puts "Updated review request ##{review_id}: #{rb.review_url(review_id)}"
  13.         else
  14.           review_id = rb.create_review(options[:branch], options[:user])
  15.           puts "Created review request ##{review_id}: #{rb.review_url(review_id)}"
  16.         end
  17.  
  18.         session_set(:review_url, rb.review_url(review_id))
  19.       rescue Exception => e
  20.         puts e.message
  21.       end
  22.     end
  23.   end
  24. end