How do I SVN add all unversioned files to SVN? By Saurabh Patel June 28, 2015 1: svn add --force * --auto-props --parents --depth infinity -q OR 2 : svn status | grep '?' | sed 's/^.* /svn add /' | bashOR3: svn add `svn status . | grep "^?" | awk '{print $2}'` Share Get link Facebook X Pinterest Email Other Apps Labels svn Share Get link Facebook X Pinterest Email Other Apps Comments
Email Address Validation By Saurabh Patel September 13, 2012 User this regular expression : ^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.(?:[A-Z]{2}|com|org|net|edu|gov|mil|biz|info|mobi|name|aero|asia|jobs|museum)$ Read more
HTML Emailing in ZF2 By Saurabh Patel October 29, 2014 <?php namespace Application\Model; use Zend\Mail\Message; use Zend\Mime\Message as MimeMessage; use Zend\Mime\Part as MimePart; use Zend\Mail\Transport\Sendmail as SendmailTransport; use Zend\Mail\Transport\Smtp as SmtpTransport; use Zend\Mail\Transport\SmtpOptions; use Zend\View\Renderer\PhpRenderer; use Zend\View\Resolver\TemplatePathStack; use Zend\View\Model\ViewModel; use Zend\View\Model\ModelInterface; class ApiEmail extends ApiInterface { protected $From = "XXXXX@gmail.com"; protected $FromName = "XXXX"; protected $To = "" ; protected $Subject = "" ; protected $Body = "" ; protected $Cc = "XXXXXX@gmail.com"; protected $Bcc = "XXXXX@gmail.com" ; protected $ReplyTo = "XXXX@gmail.com" ; protected $Sender = "" ; protected $Encoding = "UTF-8" ; protected $MESSAGE ; // getter setter ... Read more
CMS Integration By Saurabh Patel June 16, 2012 · CMS Driven Approach · Technical Considerations · The UserConnectModule · Passwords · Entity Attributes · Dealing with Legacy Attributes · Registration · Synchronizing Sessions · Magento Listeners · CMS Sessions · Shared Themes · Store Driven Integration Read more
Comments
Post a Comment