{"id":1330,"date":"2018-01-07T14:15:36","date_gmt":"2018-01-07T14:15:36","guid":{"rendered":"https:\/\/www.withinweb.com\/info\/?p=1330"},"modified":"2018-01-07T18:28:57","modified_gmt":"2018-01-07T18:28:57","slug":"using-subversion-wordpress-plugins","status":"publish","type":"post","link":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/","title":{"rendered":"Using Subversion for WordPress Plugins"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1379 alignleft\" src=\"https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200.png\" alt=\"\" width=\"200\" height=\"201\" srcset=\"https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200.png 200w, https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200-150x151.png 150w, https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200-100x101.png 100w\" sizes=\"auto, (max-width: 200px) 100vw, 200px\" \/><\/p>\n<h3>Subversion Control for WordPress<\/h3>\n<p>If you write a plugin for WordPress and want to make it available on WordPress.org, you have to use Subversion to handle revisions, versions and source control.<\/p>\n<p>There are a number of programs that you can use and which can be installed on a PC or a MAC. Many do use the command line which can be difficult for those not familiar with the particular commands. However, there are a number of client applications that have very good user interfaces which does make the process much easier.<\/p>\n<p><strong>SilkSVN<\/strong> Windows Command Line Client.\u00a0<a href=\"https:\/\/sliksvn.com\/download\/\" target=\"_blank\" rel=\"noopener\">https:\/\/sliksvn.com\/download\/<\/a><br \/>\n<strong>TortoiseSVN<\/strong> for Windows which can be downloaded at <a href=\"https:\/\/tortoisesvn.net\/downloads.html\" target=\"_blank\" rel=\"noopener\">https:\/\/tortoisesvn.net\/downloads.html<\/a><br \/>\n<strong>Versions<\/strong> for the Mac which can be downloaded at <a href=\"http:\/\/versionsapp.com\" target=\"_blank\" rel=\"noopener\">http:\/\/versionsapp.com<\/a><\/p>\n<p>When I first began to look at WordPress and SVN, I wanted to use a visual method of updating. I wanted to click a button and for it to automatically do everything without thinking. However, I found that using a visual interface did not show the point of SVN and when I started to use a text interface, I found I understood the process much better. Also there is a lot of documentation available for the command line interface which is helpful when things go wrong.<\/p>\n<p>The following are some notes that I have made over the years about using the command line system with WordPress which may help if you are having issues. It is based on the WordPress.org documentation but I have added in some extra points.<\/p>\n<p>&nbsp;<\/p>\n<h3>Command Line SVN<\/h3>\n<p>As I use Windows I use <strong>SilkSVN<\/strong>.\u00a0 Download and install SilkSVN and in the cmd terminal (go to Windows Start and enter cmd.exe), type &#8220;svn&#8221; followed by the required commands. \u201csvn help\u201d will show help text and will show that SilkSVN is working.<\/p>\n<p>The documentation that WordPress has produced is located here:<\/p>\n<p><a href=\"https:\/\/developer.wordpress.org\/plugins\/wordpress-org\/how-to-use-subversion\/\">https:\/\/developer.wordpress.org\/plugins\/wordpress-org\/how-to-use-subversion\/<\/a><\/p>\n<p>The only issue I have found when using <strong>SilkSVN<\/strong> is that you should use double quotes wherever it uses single quotes as in the standard SVN documentation.<\/p>\n<p>Also, always make sure you change directory to where your local repository is located.<\/p>\n<p>&nbsp;<\/p>\n<h3>Starting a new plugin<\/h3>\n<p>On your computer, first create a local directory which will be your copy of the SVN repository.<\/p>\n<p>In this document I will use my-local-dir to refer to the local directory.<\/p>\n<p>Next, check out the pre-built repository using the co command:<\/p>\n<pre>my-local-dir \/ svn co https:\/\/plugins.svn.wordpress.org\/your-plugin-name my-local-dir\r\n&gt; A my-local-dir\/trunk\r\n&gt; A my-local-dir\/branches\r\n&gt; A my-local-dir\/tags\r\n&gt; Checked out revision 11325.\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>You will probably be asked your <strong>username<\/strong> and <strong>password<\/strong> which will be the one you were given when you registered for WordPress.org.<\/p>\n<p>The above command will create a set of folders on your local computer in your local directory called &#8220;trunk&#8221;, &#8220;branches&#8221; and &#8220;tags&#8221;.<\/p>\n<p>The &#8220;tags&#8221; folder is for your releases and will consist of a number of sub folders that correspond to your version numbers.<\/p>\n<p>The &#8220;trunk&#8221; folder is where your development version is located.<\/p>\n<p>Copy your files into the &#8220;trunk&#8221; folder and then you have to let subversion know you want to add the files into the repository:<\/p>\n<pre>my-local-dir \/ svn add trunk\/*\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>Now check in the changes:<\/p>\n<pre>my-local-dir \/ svn ci -m \"Check in to trunk\"\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>Now copy the trunk files to the required tag folder.\u00a0 In this example I am going to create a folder 1.0.0<\/p>\n<pre>my-local-dir \/ svn cp trunk tags\/1.0.0\r\n&gt; A tags\/1.0.0\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>and commit the changes:<\/p>\n<pre>my-local-dir \/ svn ci -m \"tagging version 1.0.0\"\r\n<\/pre>\n<p>So now on the remote repository you should have your released files in the tag\/1.0.0 and your current working development files will also be in the &#8220;trunk&#8221; folder.<\/p>\n<p>&nbsp;<\/p>\n<h3>Creating a new version<\/h3>\n<p>We want to create a new version of our plugin so we:<br \/>\n* Modify the readme.txt with the new version number.<br \/>\n* Modify the main php file with the new version number.<br \/>\n* Update the trunk folder so that it contains the latest files.<br \/>\n* Copy the trunk folder to a new tags folder using SVN.<br \/>\n* Check in the changes using SVN.<\/p>\n<p>Essentially the method is the same as described above but with a few more checks.<\/p>\n<p>On your local computer, make sure that your trunk files are up to date.<\/p>\n<p>We can do this by using the SVN update command. (First, change your directory to where the SVN local directory is situated):<\/p>\n<pre>my-local-dir \/ svn update\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>Files in the remote repository are downloaded and update the local files.<\/p>\n<p>Copy over the file or files to your local trunk folder and then let subversion know you want to add those files back:<\/p>\n<pre>my-local-dir \/ svn add trunk\/*\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>Now commit the changes:<\/p>\n<pre>my-local-dir \/ svn ci \u2013m \u201cadd new files to trunk\u201d\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>Now do a status display:<\/p>\n<pre>my-local-dir \/ svn stat\r\n<\/pre>\n<p>You can see the meaning of the status information further at the end of this article.<\/p>\n<p>&nbsp;<\/p>\n<p>At this point, you may have to delete files \/ folders by:<\/p>\n<pre>my-local-dir \/ svn delete \r\n<\/pre>\n<p>In some cases, you may have to use \u2013force to force the deletion.<\/p>\n<p>&nbsp;<\/p>\n<p>When you do:<\/p>\n<pre>my-local-dir \/ svn stat\r\n<\/pre>\n<p>you should now see those files\/folders marked for deletion.<\/p>\n<p>&nbsp;<\/p>\n<p>Deleting only deletes it form the local copy and only schedules if for deletion from the repository. You have to then commit the changes by:<\/p>\n<pre>my-local-dir \/ svn ci -m \"New files update\"\r\n&gt; Sending trunk\/my-plugin.php\r\n&gt; Transmitting file data .\r\n&gt; Committed revision 11327.\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>That updates the files in the trunk folder and deletes any marked files.<\/p>\n<p>Now that you have the files checked in to the trunk folder, you can copy over the files to a tag folder as described above.<\/p>\n<p>&nbsp;<\/p>\n<p>You do this by:<\/p>\n<pre>my-local-dir \/ svn cp trunk tags\/2.0\r\n&gt; A tags\/2.0\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>Now, as always, check in the changes.<\/p>\n<pre>my-local-dir \/ svn ci -m \"tagging version 2.0\"\r\n&gt; Adding tags\/2.0\r\n&gt; Adding tags\/2.0\/my-plugin.php\r\n&gt; Adding tags\/2.0\/readme.txt\r\n&gt; Committed revision 11328.\r\n<\/pre>\n<p>&nbsp;<\/p>\n<h3>The assets folder<\/h3>\n<p>Use the assets folder for files like screenshots, banners and icons for wordpress.org site. Note that the assets folder is a separate folder in the root of the folder structure and is not a subfolder of the trunk or tag folder.<\/p>\n<p>Update as the assets folder follows.<\/p>\n<p>&nbsp;<\/p>\n<p>Navigate to the local folder which is the root of the SVN, then enter:<\/p>\n<pre>my-local-dir \/ svn add assets\/*\r\n&gt;\u00a0 A assets\/sceenshot-1.png\r\n&gt;\u00a0 A assets\/sceenshot-2.png\r\n<\/pre>\n<p>The \u201cadd assets\/*\u201d identifies all files in the assets folder.<\/p>\n<p>&nbsp;<\/p>\n<p>After you add all your files, you need to check in the changes back to the central repository using ci:<\/p>\n<pre>my-local-dir \/ svn ci -m \u201cAdd assets\u201d\r\n&gt; Adding assets\/screenshot-1.png\r\n&gt; Adding assets\/screenshot-2.png\r\n&gt; Transmitting file data\r\n&gt; Committed revision 1124545\r\n<\/pre>\n<p>&nbsp;<\/p>\n<h3>Status Command<\/h3>\n<p>A useful command is \u201csvn status\u201d which gives information about the state of the repository.<\/p>\n<pre> my-local-dir \/ svn stat\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>If you see ? in the list of files or folders, it means that they are not under svn control. In which case do \u201csvn add<br \/>\nTo use this command as with all the other commands, you need to change directory on your local computer to the root folder of the SVN.<\/p>\n<p><strong>U<\/strong>: Working file was updated<br \/>\n<strong>G<\/strong>: Changes on the repository were automatically merged into the working copy<br \/>\n<strong>M<\/strong>: Working copy is modified<br \/>\n<strong>C<\/strong>: This file conflicts with the version in the repository<br \/>\n<strong>?<\/strong>: This file is not under version control<br \/>\n<strong>!<\/strong>: This file is under version control but is missing or incomplete<br \/>\n<strong>A<\/strong>: This file will be added to version control (after commit)<br \/>\n<strong>A+<\/strong>: This file will be moved (after commit)<br \/>\n<strong>D<\/strong>: This file will be deleted (after commit)<br \/>\n<strong>S<\/strong>: This signifies that the file or directory has been switched from the path of the rest of the working copy (using svn switch) to a branch<br \/>\n<strong>I<\/strong>: Ignored<br \/>\n<strong>X<\/strong>: External definition<br \/>\n<strong>~<\/strong>: Type changed<br \/>\n<strong>R<\/strong>: Item has been replaced in your working copy. This means the file was scheduled for deletion, and then a new file with the same name was scheduled for addition in its place.<br \/>\n<strong>L<\/strong> : Item is locked<br \/>\n<strong>E<\/strong>: Item existed, as it would have been created, by an SVN update.<\/p>\n<p>&nbsp;<\/p>\n<h3>Problems, problems, problems<\/h3>\n<p>If you get a message \u2018folder name\u2019 is scheduled for addition, but is missing then look at the following document:<\/p>\n<p><a href=\"https:\/\/benohead.com\/svn-file-scheduled-addition-missing\/\" target=\"_blank\" rel=\"noopener\">https:\/\/benohead.com\/svn-file-scheduled-addition-missing\/<\/a><\/p>\n<p>Also look at:<\/p>\n<p><a href=\"http:\/\/svnbook.red-bean.com\/en\/1.6\/svn.ref.svn.c.delete.html\" target=\"_blank\" rel=\"noopener\">http:\/\/svnbook.red-bean.com\/en\/1.6\/svn.ref.svn.c.delete.html<\/a><\/p>\n<p>The method that I have found to use is rm (remove), or you may use the delete command. So you do something like:<\/p>\n<pre>my-local-dir \/ svn rm \u2013force c:\\csv\\withinweb_wp_keycodes\\withinweb-php-keycodes\\tags\\2.0.0\\views\r\n<\/pre>\n<p>Once you have removed all the problems you should be able to commit.<\/p>\n<p>Note that you may have change the local directory to the file or folder that you are going to delete or you have to enter the full path name of the file or folder.<\/p>\n<p>&nbsp;<\/p>\n<h3>Checking differences<\/h3>\n<p>Checking files are at the correct version can be done by doing a diff.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Subversion Control for WordPress If you write a plugin for WordPress and want to make it available on WordPress.org, you have to use Subversion to handle revisions, versions and source control. There are a number of programs that you can<span class=\"ellipsis\">&hellip;<\/span><\/p>\n<div class=\"read-more\"><a href=\"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/\">Read more <span class=\"screen-reader-text\">Using Subversion for WordPress Plugins<\/span><span class=\"meta-nav\"> &#8250;<\/span><\/a><\/div>\n<p><!-- end of .read-more --><\/p>\n","protected":false},"author":53,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-1330","post","type-post","status-publish","format-standard","hentry","category-general-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using Subversion for WordPress Plugins - PHP Web Applications<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Subversion for WordPress Plugins - PHP Web Applications\" \/>\n<meta property=\"og:description\" content=\"Subversion Control for WordPress If you write a plugin for WordPress and want to make it available on WordPress.org, you have to use Subversion to handle revisions, versions and source control. There are a number of programs that you can&hellip;Read more Using Subversion for WordPress Plugins &#8250;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/\" \/>\n<meta property=\"og:site_name\" content=\"PHP Web Applications\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-07T14:15:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-07T18:28:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200.png\" \/>\n<meta name=\"author\" content=\"Paul Gibbs\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Paul Gibbs\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/\"},\"author\":{\"name\":\"Paul Gibbs\",\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/#\\\/schema\\\/person\\\/b4df539cfb6debde6d0373daadfeb470\"},\"headline\":\"Using Subversion for WordPress Plugins\",\"datePublished\":\"2018-01-07T14:15:36+00:00\",\"dateModified\":\"2018-01-07T18:28:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/\"},\"wordCount\":1326,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/plug_200.png\",\"articleSection\":[\"General PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/\",\"url\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/\",\"name\":\"Using Subversion for WordPress Plugins - PHP Web Applications\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/plug_200.png\",\"datePublished\":\"2018-01-07T14:15:36+00:00\",\"dateModified\":\"2018-01-07T18:28:57+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/#\\\/schema\\\/person\\\/b4df539cfb6debde6d0373daadfeb470\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/plug_200.png\",\"contentUrl\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/plug_200.png\",\"width\":200,\"height\":201},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/using-subversion-wordpress-plugins\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Subversion for WordPress Plugins\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/#website\",\"url\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/\",\"name\":\"PHP Web Applications\",\"description\":\"Information and support for products of WithinWeb.com\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/#\\\/schema\\\/person\\\/b4df539cfb6debde6d0373daadfeb470\",\"name\":\"Paul Gibbs\",\"sameAs\":[\"http:\\\/\\\/www.withinweb.com\"],\"url\":\"https:\\\/\\\/www.withinweb.com\\\/info\\\/author\\\/azpg27\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Subversion for WordPress Plugins - PHP Web Applications","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/","og_locale":"en_US","og_type":"article","og_title":"Using Subversion for WordPress Plugins - PHP Web Applications","og_description":"Subversion Control for WordPress If you write a plugin for WordPress and want to make it available on WordPress.org, you have to use Subversion to handle revisions, versions and source control. There are a number of programs that you can&hellip;Read more Using Subversion for WordPress Plugins &#8250;","og_url":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/","og_site_name":"PHP Web Applications","article_published_time":"2018-01-07T14:15:36+00:00","article_modified_time":"2018-01-07T18:28:57+00:00","og_image":[{"url":"https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200.png","type":"","width":"","height":""}],"author":"Paul Gibbs","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Paul Gibbs","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/#article","isPartOf":{"@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/"},"author":{"name":"Paul Gibbs","@id":"https:\/\/www.withinweb.com\/info\/#\/schema\/person\/b4df539cfb6debde6d0373daadfeb470"},"headline":"Using Subversion for WordPress Plugins","datePublished":"2018-01-07T14:15:36+00:00","dateModified":"2018-01-07T18:28:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/"},"wordCount":1326,"commentCount":0,"image":{"@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/#primaryimage"},"thumbnailUrl":"https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200.png","articleSection":["General PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/","url":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/","name":"Using Subversion for WordPress Plugins - PHP Web Applications","isPartOf":{"@id":"https:\/\/www.withinweb.com\/info\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/#primaryimage"},"image":{"@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/#primaryimage"},"thumbnailUrl":"https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200.png","datePublished":"2018-01-07T14:15:36+00:00","dateModified":"2018-01-07T18:28:57+00:00","author":{"@id":"https:\/\/www.withinweb.com\/info\/#\/schema\/person\/b4df539cfb6debde6d0373daadfeb470"},"breadcrumb":{"@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/#primaryimage","url":"https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200.png","contentUrl":"https:\/\/www.withinweb.com\/info\/wp-content\/uploads\/2018\/01\/plug_200.png","width":200,"height":201},{"@type":"BreadcrumbList","@id":"https:\/\/www.withinweb.com\/info\/using-subversion-wordpress-plugins\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.withinweb.com\/info\/"},{"@type":"ListItem","position":2,"name":"Using Subversion for WordPress Plugins"}]},{"@type":"WebSite","@id":"https:\/\/www.withinweb.com\/info\/#website","url":"https:\/\/www.withinweb.com\/info\/","name":"PHP Web Applications","description":"Information and support for products of WithinWeb.com","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.withinweb.com\/info\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.withinweb.com\/info\/#\/schema\/person\/b4df539cfb6debde6d0373daadfeb470","name":"Paul Gibbs","sameAs":["http:\/\/www.withinweb.com"],"url":"https:\/\/www.withinweb.com\/info\/author\/azpg27\/"}]}},"_links":{"self":[{"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/posts\/1330","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/users\/53"}],"replies":[{"embeddable":true,"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/comments?post=1330"}],"version-history":[{"count":40,"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/posts\/1330\/revisions"}],"predecessor-version":[{"id":1381,"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/posts\/1330\/revisions\/1381"}],"wp:attachment":[{"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/media?parent=1330"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/categories?post=1330"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.withinweb.com\/info\/wp-json\/wp\/v2\/tags?post=1330"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}