Changeset 717516
- Timestamp:
- 05/23/2013 10:57:02 PM (13 years ago)
- Location:
- rsvp-me
- Files:
-
- 14 edited
- 1 copied
-
tags/1.0.1 (copied) (copied from rsvp-me/trunk)
-
tags/1.0.1/includes/rsvpme_functions.php (modified) (5 diffs)
-
tags/1.0.1/js/rsvp_me.js (modified) (2 diffs)
-
tags/1.0.1/readme.txt (modified) (2 diffs)
-
tags/1.0.1/rsvpme.css (modified) (1 diff)
-
tags/1.0.1/rsvpme.php (modified) (2 diffs)
-
tags/1.0.1/screenshot-1.png (modified) (previous)
-
tags/1.0.1/screenshot-2.png (modified) (previous)
-
trunk/includes/rsvpme_functions.php (modified) (5 diffs)
-
trunk/js/rsvp_me.js (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/rsvpme.css (modified) (1 diff)
-
trunk/rsvpme.php (modified) (2 diffs)
-
trunk/screenshot-1.png (modified) (previous)
-
trunk/screenshot-2.png (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
rsvp-me/tags/1.0.1/includes/rsvpme_functions.php
r717171 r717516 1 1 <?php 2 /* 3 RSVP ME functions 4 Author: Micah Blu 5 */ 2 /** 3 * RSVP ME functions 4 * Author: Micah Blu 5 * 6 * Meat & Potatos, most of the functions that make this work :) 7 */ 6 8 7 9 function rsvp_me_install(){ … … 264 266 265 267 /** check for events !! **/ 266 if( $events[$current_ymd])268 if(isset($events[$current_ymd])) 267 269 { 268 270 if($hasMultipleEvents) … … 412 414 <form action="" method="post" name=""> 413 415 414 <? =$handle=='edit' ? "<input type='hidden' name='id' value='" . $event["id"] ."' />\n" : "" ?>416 <?php echo $handle=='edit' ? "<input type='hidden' name='id' value='" . $event["id"] ."' />\n" : "" ?> 415 417 416 418 <div class='form-segments'> … … 420 422 421 423 <tr> 422 <td>Event title</td><td><input type='text' id='text' name='title' value='<? =stripslashes($event['title'])?>' /></td>423 </tr> 424 425 <tr> 426 <td>Event description</td><td><textarea name='description' id='description' style='width:275px; height:75px'><? =stripslashes($event['description'])?></textarea></td>424 <td>Event title</td><td><input type='text' id='text' name='title' value='<?php echo stripslashes($event['title'])?>' /></td> 425 </tr> 426 427 <tr> 428 <td>Event description</td><td><textarea name='description' id='description' style='width:275px; height:75px'><?php echo stripslashes($event['description'])?></textarea></td> 427 429 </tr> 428 430 … … 436 438 <td> 437 439 Date<br /> 438 <input type="text" onclick="cal.appendCalendar(this, '400', '300', '<? = PLUGIN_PATH ?>')" name="date" readonly="readonly" size='10' maxlength="10" value="<?=$date?>" title="calfield" class='reqd' />440 <input type="text" onclick="cal.appendCalendar(this, '400', '300', '<?php echo PLUGIN_PATH ?>')" name="date" readonly="readonly" size='10' maxlength="10" value="<?php echo $date?>" title="calfield" class='reqd' /> 439 441 </td> 440 442 -
rsvp-me/tags/1.0.1/js/rsvp_me.js
r717171 r717516 1 /* 2 Notes: 3 -Some methods used here rely on jquery. 4 */ 1 /** 2 * Main js file 3 * 4 * @dep jquery 5 */ 5 6 6 7 var rsvpMe = { … … 48 49 } 49 50 50 mybox.overlay(html, $("#rsvp_form_"+events[0].id).width() , $("#rsvp_form_"+events[0].id).height() + 100); //arbitrary 100 added as padding, obviously not ideal, but will do for now51 mybox.overlay(html, $("#rsvp_form_"+events[0].id).width() + 100, $("#rsvp_form_"+events[0].id).height() + 100); //arbitrary 100 added as padding, obviously not ideal, but will do for now 51 52 52 53 //now that our overlay is up let's check to see if we remember this user -
rsvp-me/tags/1.0.1/readme.txt
r717171 r717516 5 5 Requires at least: 2.0.2 6 6 Tested up to: 3.5.1 7 Stable tag: 1.0 7 Stable tag: 1.0.1 8 8 9 9 == Description == … … 43 43 2. Added better default styles for the calendar widget 44 44 45 12-31-2010 v0.945 12-31-2010 46 46 47 47 Stable release 0.9 48 48 49 05-23-2012 v1.0 50 Stable Release v1.0 51 1. Cleaned up some css styling rules and checked it against the wordpress 3.5.1 52 2. Added the ability to have multiple events in one day 49 05-22-2012 50 1. Cleaned up some css styling rules and checked it against the wordpress 3.5.1 51 52 05-23-2012 53 1. added needed padding on the rsvp form needed for some themes 54 2. added an isset() on an index variable to avoid runtime errors 53 55 54 56 == Upgrade Notice == -
rsvp-me/tags/1.0.1/rsvpme.css
r717171 r717516 85 85 div.rsvp-form{ 86 86 font-size:14px; 87 top: 25px; 87 88 } 88 89 -
rsvp-me/tags/1.0.1/rsvpme.php
r717177 r717516 4 4 Plugin URI: http://www.micahblu.com/ 5 5 Description: Event Calendar that allows users to RSVP to the selected event. 6 Version: 1.0 6 Version: 1.0.1 7 7 Author: Micah Blu 8 8 Author URI: http://www.micahblu.com … … 10 10 */ 11 11 12 define('RSVP_ME_VERSION', ' 0.9.1');12 define('RSVP_ME_VERSION', '1.0.1'); 13 13 14 14 define('RSVP_ME_FILE_PATH', dirname(__FILE__)); -
rsvp-me/trunk/includes/rsvpme_functions.php
r717171 r717516 1 1 <?php 2 /* 3 RSVP ME functions 4 Author: Micah Blu 5 */ 2 /** 3 * RSVP ME functions 4 * Author: Micah Blu 5 * 6 * Meat & Potatos, most of the functions that make this work :) 7 */ 6 8 7 9 function rsvp_me_install(){ … … 264 266 265 267 /** check for events !! **/ 266 if( $events[$current_ymd])268 if(isset($events[$current_ymd])) 267 269 { 268 270 if($hasMultipleEvents) … … 412 414 <form action="" method="post" name=""> 413 415 414 <? =$handle=='edit' ? "<input type='hidden' name='id' value='" . $event["id"] ."' />\n" : "" ?>416 <?php echo $handle=='edit' ? "<input type='hidden' name='id' value='" . $event["id"] ."' />\n" : "" ?> 415 417 416 418 <div class='form-segments'> … … 420 422 421 423 <tr> 422 <td>Event title</td><td><input type='text' id='text' name='title' value='<? =stripslashes($event['title'])?>' /></td>423 </tr> 424 425 <tr> 426 <td>Event description</td><td><textarea name='description' id='description' style='width:275px; height:75px'><? =stripslashes($event['description'])?></textarea></td>424 <td>Event title</td><td><input type='text' id='text' name='title' value='<?php echo stripslashes($event['title'])?>' /></td> 425 </tr> 426 427 <tr> 428 <td>Event description</td><td><textarea name='description' id='description' style='width:275px; height:75px'><?php echo stripslashes($event['description'])?></textarea></td> 427 429 </tr> 428 430 … … 436 438 <td> 437 439 Date<br /> 438 <input type="text" onclick="cal.appendCalendar(this, '400', '300', '<? = PLUGIN_PATH ?>')" name="date" readonly="readonly" size='10' maxlength="10" value="<?=$date?>" title="calfield" class='reqd' />440 <input type="text" onclick="cal.appendCalendar(this, '400', '300', '<?php echo PLUGIN_PATH ?>')" name="date" readonly="readonly" size='10' maxlength="10" value="<?php echo $date?>" title="calfield" class='reqd' /> 439 441 </td> 440 442 -
rsvp-me/trunk/js/rsvp_me.js
r717171 r717516 1 /* 2 Notes: 3 -Some methods used here rely on jquery. 4 */ 1 /** 2 * Main js file 3 * 4 * @dep jquery 5 */ 5 6 6 7 var rsvpMe = { … … 48 49 } 49 50 50 mybox.overlay(html, $("#rsvp_form_"+events[0].id).width() , $("#rsvp_form_"+events[0].id).height() + 100); //arbitrary 100 added as padding, obviously not ideal, but will do for now51 mybox.overlay(html, $("#rsvp_form_"+events[0].id).width() + 100, $("#rsvp_form_"+events[0].id).height() + 100); //arbitrary 100 added as padding, obviously not ideal, but will do for now 51 52 52 53 //now that our overlay is up let's check to see if we remember this user -
rsvp-me/trunk/readme.txt
r717171 r717516 5 5 Requires at least: 2.0.2 6 6 Tested up to: 3.5.1 7 Stable tag: 1.0 7 Stable tag: 1.0.1 8 8 9 9 == Description == … … 43 43 2. Added better default styles for the calendar widget 44 44 45 12-31-2010 v0.945 12-31-2010 46 46 47 47 Stable release 0.9 48 48 49 05-23-2012 v1.0 50 Stable Release v1.0 51 1. Cleaned up some css styling rules and checked it against the wordpress 3.5.1 52 2. Added the ability to have multiple events in one day 49 05-22-2012 50 1. Cleaned up some css styling rules and checked it against the wordpress 3.5.1 51 52 05-23-2012 53 1. added needed padding on the rsvp form needed for some themes 54 2. added an isset() on an index variable to avoid runtime errors 53 55 54 56 == Upgrade Notice == -
rsvp-me/trunk/rsvpme.css
r717171 r717516 85 85 div.rsvp-form{ 86 86 font-size:14px; 87 top: 25px; 87 88 } 88 89 -
rsvp-me/trunk/rsvpme.php
r717177 r717516 4 4 Plugin URI: http://www.micahblu.com/ 5 5 Description: Event Calendar that allows users to RSVP to the selected event. 6 Version: 1.0 6 Version: 1.0.1 7 7 Author: Micah Blu 8 8 Author URI: http://www.micahblu.com … … 10 10 */ 11 11 12 define('RSVP_ME_VERSION', ' 0.9.1');12 define('RSVP_ME_VERSION', '1.0.1'); 13 13 14 14 define('RSVP_ME_FILE_PATH', dirname(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.