Sha256: 69387d6997416a54eacd7c4eb95427d08928f4ad13a9997ae8ae85e84258bc86

Contents?: true

Size: 924 Bytes

Versions: 2

Compression:

Stored size: 924 Bytes

Contents

  # this method adds a new address record
  def saveeventrecord 
   require 'fileutils'
   if @a_eventfilename
   newname = "%s" %   [@a_eventfilename] # grab the new filename to create
   newdata =@a_eventtime.to_s + "\n" + @a_eventwhat.to_s + "\n" + @a_eventaddress.to_s + "\n" + @a_eventphone.to_s + "\n" + @a_eventemail.to_s + "\n" + @a_eventcomment1.to_s + "\n" + @a_eventcomment2.to_s + "\n" + @a_eventcomment3.to_s + "\n"
	 fullnewname = newname + ".sch"
        begin # exception trapped block
          fileName = File.join( $rwdschedule_directory, fullnewname )
        	fd = File.open(fileName,"w")
	        fd.print(newdata) # save the record info to the file
	        fd.close
          @neweventresult=newdata # show the record info in the browser
        rescue SystemCallError, StandardError
            $stderr.print "system call error: " + $!
        end # exception rescue
    end
  end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rwdschedule-0.94 code/superant.com.schedule/saveeventrecord.rb
rwdschedule-0.93 code/superant.com.schedule/saveeventrecord.rb