Quick Tip: Coda 2.0.12 and Subversion (on Mavericks)
Having trouble getting the latest build of Coda (2.0.12) to recognize your subversion binaries/repos? Try this, and let me know if it helps:
function remove_more_jump_link($link) { $offset = strpos($link, '#more-'); if ($offset) { $end = strpos($link, '"',$offset); } if ($end) { $link = substr_replace($link, '', $offset, $end-$offset); } return $link; } add_filter('the_content_more_link', 'remove_more_jump_link'); ?>
Having trouble getting the latest build of Coda (2.0.12) to recognize your subversion binaries/repos? Try this, and let me know if it helps:
We’ve been using PhoneGap a lot for our recent projects to help quickly develop simple mobile apps for clients. With the release of iOS 7, all apps are now running in ‘full screen’ mode, which creates an issue with your viewable content as none of our apps were compensating for the top status bar (and thus, overlaying headers, navigation, etc).