Changeset 3356897
- Timestamp:
- 09/05/2025 08:49:41 PM (3 months ago)
- Location:
- pressforward
- Files:
-
- 18 edited
- 1 copied
-
tags/5.9.3 (copied) (copied from pressforward/trunk)
-
tags/5.9.3/Core/Bookmarklet/NominateThisCore.php (modified) (1 diff)
-
tags/5.9.3/Core/Schema/Feeds.php (modified) (1 diff)
-
tags/5.9.3/Core/Schema/Nominations.php (modified) (3 diffs)
-
tags/5.9.3/constants.php (modified) (1 diff)
-
tags/5.9.3/languages/pressforward.pot (modified) (9 diffs)
-
tags/5.9.3/package.json (modified) (1 diff)
-
tags/5.9.3/pressforward.php (modified) (1 diff)
-
tags/5.9.3/readme.txt (modified) (2 diffs)
-
tags/5.9.3/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/Core/Bookmarklet/NominateThisCore.php (modified) (1 diff)
-
trunk/Core/Schema/Feeds.php (modified) (1 diff)
-
trunk/Core/Schema/Nominations.php (modified) (3 diffs)
-
trunk/constants.php (modified) (1 diff)
-
trunk/languages/pressforward.pot (modified) (9 diffs)
-
trunk/package.json (modified) (1 diff)
-
trunk/pressforward.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pressforward/tags/5.9.3/Core/Bookmarklet/NominateThisCore.php
r3207176 r3356897 697 697 */ 698 698 public function register_nomination_success_panel() { 699 $base_cap = get_option( 700 'pf_menu_nominate_this_access', 701 pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' ) 702 ); 703 699 704 add_submenu_page( 700 705 '', 701 706 __( 'Nomination Success', 'pressforward' ), 702 707 __( 'Nomination Success', 'pressforward' ), 703 'edit_posts',708 $base_cap, 704 709 'pf-nomination-success', 705 710 [ $this, 'nomination_success_panel' ] -
pressforward/tags/5.9.3/Core/Schema/Feeds.php
r3330426 r3356897 432 432 } 433 433 434 if ( ! current_user_can( 'edit_p age', $post_id ) ) {434 if ( ! current_user_can( 'edit_post', $post_id ) ) { 435 435 return false; 436 436 } -
pressforward/tags/5.9.3/Core/Schema/Nominations.php
r3017244 r3356897 59 59 'hook' => 'manage_edit-nomination_sortable_columns', 60 60 'method' => 'nomination_sortable_columns', 61 ), 62 array( 63 'hook' => 'user_has_cap', 64 'method' => 'add_assign_post_tags_cap', 65 'args' => 4, 61 66 ), 62 67 ); … … 88 93 'show_ui' => true, 89 94 // But not the default UI, we want to attach it to the plugin menu. 90 'show_in_menu' => false,95 'show_in_menu' => 'pf-menu', 91 96 'show_in_rest' => true, 92 97 // Linking in the metabox building function. 93 98 'register_meta_box_cb' => array( $this, 'nominations_meta_boxes' ), 94 'capability_type' => 'post',95 99 // The type of input (besides the metaboxes) that it supports. 96 100 'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'revisions' ), … … 100 104 ); 101 105 106 $cap_keys = [ 107 'edit_post', 108 'read_post', 109 'delete_post', 110 'edit_posts', 111 'edit_others_posts', 112 'publish_posts', 113 'read_private_posts', 114 'delete_posts', 115 'delete_private_posts', 116 'delete_published_posts', 117 'delete_others_posts', 118 'edit_private_posts', 119 'edit_published_posts', 120 'create_posts', 121 ]; 122 123 $caps = array_fill_keys( 124 $cap_keys, 125 get_option( 126 'pf_menu_nominate_this_access', 127 pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' ) 128 ) 129 ); 130 131 $args['capabilities'] = $caps; 132 $args['map_meta_cap'] = false; 133 102 134 register_post_type( $this->post_type, $args ); 135 } 136 137 /** 138 * Grants users with the 'pf_menu_nominate_this_access' capability the ability to assign tags to nominations. 139 * 140 * @param array $allcaps All capabilities of the user. 141 * @param array $caps Actual capabilities being checked. 142 * @param array $args Arguments that accompany the capability check. 143 * @param \WP_User $user The user whose capabilities are being checked. 144 * @return array 145 */ 146 public function add_assign_post_tags_cap( $allcaps, $caps, $args, $user ) { 147 $base_cap = get_option( 148 'pf_menu_nominate_this_access', 149 pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' ) 150 ); 151 152 if ( ! defined( 'REST_REQUEST' ) || ! REST_REQUEST ) { 153 return $allcaps; 154 } 155 156 global $wp; 157 if ( empty( $wp->query_vars['rest_route'] ) || 0 !== strpos( $wp->query_vars['rest_route'], '/wp/v2/nomination' ) ) { 158 return $allcaps; 159 } 160 161 if ( in_array( 'edit_posts', $caps, true ) && user_can( $user->ID, $base_cap ) ) { 162 $allcaps['edit_posts'] = true; 163 } 164 165 return $allcaps; 103 166 } 104 167 -
pressforward/tags/5.9.3/constants.php
r3350611 r3356897 14 14 define( 'PF_FILE_PATH', PF_ROOT . '/pressforward.php' ); 15 15 define( 'PF_URL', plugins_url( '/', __FILE__ ) ); 16 define( 'PF_VERSION', '5.9. 2' );16 define( 'PF_VERSION', '5.9.3' ); -
pressforward/tags/5.9.3/languages/pressforward.pot
r3350611 r3356897 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: PressForward 5.9. 1\n"5 "Project-Id-Version: PressForward 5.9.3\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pressforward\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 8-26T12:01:18-05:00\n"12 "POT-Creation-Date: 2025-09-05T15:46:19-05:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" … … 296 296 #: Controllers/Metas.php:638 297 297 #: Core/Admin/Menu.php:189 298 #: Core/Schema/Nominations.php:7 3299 #: Core/Schema/Nominations.php: 139298 #: Core/Schema/Nominations.php:78 299 #: Core/Schema/Nominations.php:202 300 300 #: parts/welcome/nominations.php:29 301 301 msgid "Nominations" … … 1099 1099 1100 1100 #: Core/Admin/Nominated.php:742 1101 #: Core/Schema/Nominations.php: 1421101 #: Core/Schema/Nominations.php:205 1102 1102 #: assets/src/blocks/blocks.js:225 1103 1103 #: build/blocks.js:1 … … 1504 1504 #: Core/Admin/PFTemplater.php:1131 1505 1505 #: Core/Bookmarklet/NominateThisCore.php:124 1506 #: Core/Schema/Nominations.php: 751506 #: Core/Schema/Nominations.php:80 1507 1507 #: assets/src/reader/util.js:284 1508 1508 #: build/reader.js:5 … … 1911 1911 msgstr "" 1912 1912 1913 #: Core/Bookmarklet/NominateThisCore.php:70 11914 #: Core/Bookmarklet/NominateThisCore.php:70 21913 #: Core/Bookmarklet/NominateThisCore.php:706 1914 #: Core/Bookmarklet/NominateThisCore.php:707 1915 1915 msgid "Nomination Success" 1916 1916 msgstr "" 1917 1917 1918 #: Core/Bookmarklet/NominateThisCore.php:72 11918 #: Core/Bookmarklet/NominateThisCore.php:726 1919 1919 #: includes/nomthis/nominate-this-core.php:165 1920 1920 msgid "Your nomination has been saved." 1921 1921 msgstr "" 1922 1922 1923 #: Core/Bookmarklet/NominateThisCore.php:72 21923 #: Core/Bookmarklet/NominateThisCore.php:727 1924 1924 #: includes/nomthis/nominate-this-core.php:166 1925 1925 msgid "See all nominations" 1926 1926 msgstr "" 1927 1927 1928 #: Core/Bookmarklet/NominateThisCore.php:72 31928 #: Core/Bookmarklet/NominateThisCore.php:728 1929 1929 #: includes/nomthis/nominate-this-core.php:167 1930 1930 #: includes/nomthis/nominate-this-core.php:177 … … 2224 2224 msgstr "" 2225 2225 2226 #: Core/Schema/Nominations.php:7 42226 #: Core/Schema/Nominations.php:79 2227 2227 msgid "Nomination" 2228 2228 msgstr "" 2229 2229 2230 #: Core/Schema/Nominations.php: 762230 #: Core/Schema/Nominations.php:81 2231 2231 msgid "Add New Nomination" 2232 2232 msgstr "" 2233 2233 2234 #: Core/Schema/Nominations.php: 772234 #: Core/Schema/Nominations.php:82 2235 2235 msgid "Edit Nomination" 2236 2236 msgstr "" 2237 2237 2238 #: Core/Schema/Nominations.php: 782238 #: Core/Schema/Nominations.php:83 2239 2239 msgid "New Nomination" 2240 2240 msgstr "" 2241 2241 2242 #: Core/Schema/Nominations.php: 792242 #: Core/Schema/Nominations.php:84 2243 2243 msgid "View Nomination" 2244 2244 msgstr "" 2245 2245 2246 #: Core/Schema/Nominations.php:8 02246 #: Core/Schema/Nominations.php:85 2247 2247 msgid "Search Nominations" 2248 2248 msgstr "" 2249 2249 2250 #: Core/Schema/Nominations.php:8 12250 #: Core/Schema/Nominations.php:86 2251 2251 msgid "No nominations found" 2252 2252 msgstr "" 2253 2253 2254 #: Core/Schema/Nominations.php:8 22254 #: Core/Schema/Nominations.php:87 2255 2255 msgid "No nominations found in Trash" 2256 2256 msgstr "" 2257 2257 2258 #: Core/Schema/Nominations.php:8 42258 #: Core/Schema/Nominations.php:89 2259 2259 msgid "Posts from around the internet nominated for consideration to public posting" 2260 2260 msgstr "" 2261 2261 2262 #: Core/Schema/Nominations.php:1 182262 #: Core/Schema/Nominations.php:181 2263 2263 msgid "Nomination Data" 2264 2264 msgstr "" 2265 2265 2266 #: Core/Schema/Nominations.php: 1372266 #: Core/Schema/Nominations.php:200 2267 2267 msgid "Title" 2268 2268 msgstr "" 2269 2269 2270 #: Core/Schema/Nominations.php: 1382270 #: Core/Schema/Nominations.php:201 2271 2271 msgid "Last Modified" 2272 2272 msgstr "" 2273 2273 2274 #: Core/Schema/Nominations.php: 1402274 #: Core/Schema/Nominations.php:203 2275 2275 msgid "Nominated By" 2276 2276 msgstr "" 2277 2277 2278 #: Core/Schema/Nominations.php: 1412278 #: Core/Schema/Nominations.php:204 2279 2279 msgid "Original Author" 2280 2280 msgstr "" 2281 2281 2282 2282 #. translators: Name of the site. 2283 #: Core/Schema/Nominations.php:2 082283 #: Core/Schema/Nominations.php:271 2284 2284 #, php-format 2285 2285 msgid "An item you nominated on %s has been published" … … 2287 2287 2288 2288 #. translators: Title of the post. 2289 #: Core/Schema/Nominations.php:2 162289 #: Core/Schema/Nominations.php:279 2290 2290 #, php-format 2291 2291 msgid "Title: %s" … … 2293 2293 2294 2294 #. translators: URL of the post. 2295 #: Core/Schema/Nominations.php:2 242295 #: Core/Schema/Nominations.php:287 2296 2296 #, php-format 2297 2297 msgid "URL: %s" -
pressforward/tags/5.9.3/package.json
r3350611 r3356897 1 1 { 2 2 "name": "pressforward", 3 "version": "5.9. 2",3 "version": "5.9.3", 4 4 "description": "PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web. ", 5 5 "main": "assets/js/pf.js", -
pressforward/tags/5.9.3/pressforward.php
r3350617 r3356897 4 4 * Plugin URI: http://pressforward.org/ 5 5 * Description: The PressForward Plugin is a tool by the Roy Rosenzweig Center for History and New Media for aggregating and curating web-based content within the WordPress dashboard. 6 * Version: 5.9. 26 * Version: 5.9.3 7 7 * GitHub Plugin URI: https://github.com/PressForward/pressforward 8 8 * Author: Boone Gorges, Aram Zucker-Scharff, Jeremy Boggs -
pressforward/tags/5.9.3/readme.txt
r3350612 r3356897 11 11 PressForward provides an integrated workflow for curating content aggregated from the web. 12 12 13 13 14 == Description == 14 15 PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web. … … 81 82 82 83 == Changelog == 84 85 = 5.9.3 = 86 * Fixed bug that prevented Subscribers from being able to use the entire Nominate This flow. 83 87 84 88 = 5.9.2 = -
pressforward/tags/5.9.3/vendor/composer/installed.php
r3350611 r3356897 4 4 'pretty_version' => '5.9.x-dev', 5 5 'version' => '5.9.9999999.9999999-dev', 6 'reference' => ' 8caec5267053fb4bc710661c9b26d5a87205cc97',6 'reference' => '3ad16ff9f581a411eb5e17fe52e371b7f69a91e2', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 86 86 'pretty_version' => '5.9.x-dev', 87 87 'version' => '5.9.9999999.9999999-dev', 88 'reference' => ' 8caec5267053fb4bc710661c9b26d5a87205cc97',88 'reference' => '3ad16ff9f581a411eb5e17fe52e371b7f69a91e2', 89 89 'type' => 'project', 90 90 'install_path' => __DIR__ . '/../../', -
pressforward/trunk/Core/Bookmarklet/NominateThisCore.php
r3207176 r3356897 697 697 */ 698 698 public function register_nomination_success_panel() { 699 $base_cap = get_option( 700 'pf_menu_nominate_this_access', 701 pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' ) 702 ); 703 699 704 add_submenu_page( 700 705 '', 701 706 __( 'Nomination Success', 'pressforward' ), 702 707 __( 'Nomination Success', 'pressforward' ), 703 'edit_posts',708 $base_cap, 704 709 'pf-nomination-success', 705 710 [ $this, 'nomination_success_panel' ] -
pressforward/trunk/Core/Schema/Feeds.php
r3330426 r3356897 432 432 } 433 433 434 if ( ! current_user_can( 'edit_p age', $post_id ) ) {434 if ( ! current_user_can( 'edit_post', $post_id ) ) { 435 435 return false; 436 436 } -
pressforward/trunk/Core/Schema/Nominations.php
r3017244 r3356897 59 59 'hook' => 'manage_edit-nomination_sortable_columns', 60 60 'method' => 'nomination_sortable_columns', 61 ), 62 array( 63 'hook' => 'user_has_cap', 64 'method' => 'add_assign_post_tags_cap', 65 'args' => 4, 61 66 ), 62 67 ); … … 88 93 'show_ui' => true, 89 94 // But not the default UI, we want to attach it to the plugin menu. 90 'show_in_menu' => false,95 'show_in_menu' => 'pf-menu', 91 96 'show_in_rest' => true, 92 97 // Linking in the metabox building function. 93 98 'register_meta_box_cb' => array( $this, 'nominations_meta_boxes' ), 94 'capability_type' => 'post',95 99 // The type of input (besides the metaboxes) that it supports. 96 100 'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'revisions' ), … … 100 104 ); 101 105 106 $cap_keys = [ 107 'edit_post', 108 'read_post', 109 'delete_post', 110 'edit_posts', 111 'edit_others_posts', 112 'publish_posts', 113 'read_private_posts', 114 'delete_posts', 115 'delete_private_posts', 116 'delete_published_posts', 117 'delete_others_posts', 118 'edit_private_posts', 119 'edit_published_posts', 120 'create_posts', 121 ]; 122 123 $caps = array_fill_keys( 124 $cap_keys, 125 get_option( 126 'pf_menu_nominate_this_access', 127 pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' ) 128 ) 129 ); 130 131 $args['capabilities'] = $caps; 132 $args['map_meta_cap'] = false; 133 102 134 register_post_type( $this->post_type, $args ); 135 } 136 137 /** 138 * Grants users with the 'pf_menu_nominate_this_access' capability the ability to assign tags to nominations. 139 * 140 * @param array $allcaps All capabilities of the user. 141 * @param array $caps Actual capabilities being checked. 142 * @param array $args Arguments that accompany the capability check. 143 * @param \WP_User $user The user whose capabilities are being checked. 144 * @return array 145 */ 146 public function add_assign_post_tags_cap( $allcaps, $caps, $args, $user ) { 147 $base_cap = get_option( 148 'pf_menu_nominate_this_access', 149 pressforward( 'controller.users' )->pf_get_defining_capability_by_role( 'contributor' ) 150 ); 151 152 if ( ! defined( 'REST_REQUEST' ) || ! REST_REQUEST ) { 153 return $allcaps; 154 } 155 156 global $wp; 157 if ( empty( $wp->query_vars['rest_route'] ) || 0 !== strpos( $wp->query_vars['rest_route'], '/wp/v2/nomination' ) ) { 158 return $allcaps; 159 } 160 161 if ( in_array( 'edit_posts', $caps, true ) && user_can( $user->ID, $base_cap ) ) { 162 $allcaps['edit_posts'] = true; 163 } 164 165 return $allcaps; 103 166 } 104 167 -
pressforward/trunk/constants.php
r3350611 r3356897 14 14 define( 'PF_FILE_PATH', PF_ROOT . '/pressforward.php' ); 15 15 define( 'PF_URL', plugins_url( '/', __FILE__ ) ); 16 define( 'PF_VERSION', '5.9. 2' );16 define( 'PF_VERSION', '5.9.3' ); -
pressforward/trunk/languages/pressforward.pot
r3350611 r3356897 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: PressForward 5.9. 1\n"5 "Project-Id-Version: PressForward 5.9.3\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pressforward\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 8-26T12:01:18-05:00\n"12 "POT-Creation-Date: 2025-09-05T15:46:19-05:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" … … 296 296 #: Controllers/Metas.php:638 297 297 #: Core/Admin/Menu.php:189 298 #: Core/Schema/Nominations.php:7 3299 #: Core/Schema/Nominations.php: 139298 #: Core/Schema/Nominations.php:78 299 #: Core/Schema/Nominations.php:202 300 300 #: parts/welcome/nominations.php:29 301 301 msgid "Nominations" … … 1099 1099 1100 1100 #: Core/Admin/Nominated.php:742 1101 #: Core/Schema/Nominations.php: 1421101 #: Core/Schema/Nominations.php:205 1102 1102 #: assets/src/blocks/blocks.js:225 1103 1103 #: build/blocks.js:1 … … 1504 1504 #: Core/Admin/PFTemplater.php:1131 1505 1505 #: Core/Bookmarklet/NominateThisCore.php:124 1506 #: Core/Schema/Nominations.php: 751506 #: Core/Schema/Nominations.php:80 1507 1507 #: assets/src/reader/util.js:284 1508 1508 #: build/reader.js:5 … … 1911 1911 msgstr "" 1912 1912 1913 #: Core/Bookmarklet/NominateThisCore.php:70 11914 #: Core/Bookmarklet/NominateThisCore.php:70 21913 #: Core/Bookmarklet/NominateThisCore.php:706 1914 #: Core/Bookmarklet/NominateThisCore.php:707 1915 1915 msgid "Nomination Success" 1916 1916 msgstr "" 1917 1917 1918 #: Core/Bookmarklet/NominateThisCore.php:72 11918 #: Core/Bookmarklet/NominateThisCore.php:726 1919 1919 #: includes/nomthis/nominate-this-core.php:165 1920 1920 msgid "Your nomination has been saved." 1921 1921 msgstr "" 1922 1922 1923 #: Core/Bookmarklet/NominateThisCore.php:72 21923 #: Core/Bookmarklet/NominateThisCore.php:727 1924 1924 #: includes/nomthis/nominate-this-core.php:166 1925 1925 msgid "See all nominations" 1926 1926 msgstr "" 1927 1927 1928 #: Core/Bookmarklet/NominateThisCore.php:72 31928 #: Core/Bookmarklet/NominateThisCore.php:728 1929 1929 #: includes/nomthis/nominate-this-core.php:167 1930 1930 #: includes/nomthis/nominate-this-core.php:177 … … 2224 2224 msgstr "" 2225 2225 2226 #: Core/Schema/Nominations.php:7 42226 #: Core/Schema/Nominations.php:79 2227 2227 msgid "Nomination" 2228 2228 msgstr "" 2229 2229 2230 #: Core/Schema/Nominations.php: 762230 #: Core/Schema/Nominations.php:81 2231 2231 msgid "Add New Nomination" 2232 2232 msgstr "" 2233 2233 2234 #: Core/Schema/Nominations.php: 772234 #: Core/Schema/Nominations.php:82 2235 2235 msgid "Edit Nomination" 2236 2236 msgstr "" 2237 2237 2238 #: Core/Schema/Nominations.php: 782238 #: Core/Schema/Nominations.php:83 2239 2239 msgid "New Nomination" 2240 2240 msgstr "" 2241 2241 2242 #: Core/Schema/Nominations.php: 792242 #: Core/Schema/Nominations.php:84 2243 2243 msgid "View Nomination" 2244 2244 msgstr "" 2245 2245 2246 #: Core/Schema/Nominations.php:8 02246 #: Core/Schema/Nominations.php:85 2247 2247 msgid "Search Nominations" 2248 2248 msgstr "" 2249 2249 2250 #: Core/Schema/Nominations.php:8 12250 #: Core/Schema/Nominations.php:86 2251 2251 msgid "No nominations found" 2252 2252 msgstr "" 2253 2253 2254 #: Core/Schema/Nominations.php:8 22254 #: Core/Schema/Nominations.php:87 2255 2255 msgid "No nominations found in Trash" 2256 2256 msgstr "" 2257 2257 2258 #: Core/Schema/Nominations.php:8 42258 #: Core/Schema/Nominations.php:89 2259 2259 msgid "Posts from around the internet nominated for consideration to public posting" 2260 2260 msgstr "" 2261 2261 2262 #: Core/Schema/Nominations.php:1 182262 #: Core/Schema/Nominations.php:181 2263 2263 msgid "Nomination Data" 2264 2264 msgstr "" 2265 2265 2266 #: Core/Schema/Nominations.php: 1372266 #: Core/Schema/Nominations.php:200 2267 2267 msgid "Title" 2268 2268 msgstr "" 2269 2269 2270 #: Core/Schema/Nominations.php: 1382270 #: Core/Schema/Nominations.php:201 2271 2271 msgid "Last Modified" 2272 2272 msgstr "" 2273 2273 2274 #: Core/Schema/Nominations.php: 1402274 #: Core/Schema/Nominations.php:203 2275 2275 msgid "Nominated By" 2276 2276 msgstr "" 2277 2277 2278 #: Core/Schema/Nominations.php: 1412278 #: Core/Schema/Nominations.php:204 2279 2279 msgid "Original Author" 2280 2280 msgstr "" 2281 2281 2282 2282 #. translators: Name of the site. 2283 #: Core/Schema/Nominations.php:2 082283 #: Core/Schema/Nominations.php:271 2284 2284 #, php-format 2285 2285 msgid "An item you nominated on %s has been published" … … 2287 2287 2288 2288 #. translators: Title of the post. 2289 #: Core/Schema/Nominations.php:2 162289 #: Core/Schema/Nominations.php:279 2290 2290 #, php-format 2291 2291 msgid "Title: %s" … … 2293 2293 2294 2294 #. translators: URL of the post. 2295 #: Core/Schema/Nominations.php:2 242295 #: Core/Schema/Nominations.php:287 2296 2296 #, php-format 2297 2297 msgid "URL: %s" -
pressforward/trunk/package.json
r3350611 r3356897 1 1 { 2 2 "name": "pressforward", 3 "version": "5.9. 2",3 "version": "5.9.3", 4 4 "description": "PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web. ", 5 5 "main": "assets/js/pf.js", -
pressforward/trunk/pressforward.php
r3350617 r3356897 4 4 * Plugin URI: http://pressforward.org/ 5 5 * Description: The PressForward Plugin is a tool by the Roy Rosenzweig Center for History and New Media for aggregating and curating web-based content within the WordPress dashboard. 6 * Version: 5.9. 26 * Version: 5.9.3 7 7 * GitHub Plugin URI: https://github.com/PressForward/pressforward 8 8 * Author: Boone Gorges, Aram Zucker-Scharff, Jeremy Boggs -
pressforward/trunk/readme.txt
r3350612 r3356897 11 11 PressForward provides an integrated workflow for curating content aggregated from the web. 12 12 13 13 14 == Description == 14 15 PressForward is a free plugin that provides an editorial workflow for content aggregation and curation within the WordPress dashboard. It is designed for bloggers and editorial teams who wish to collect, discuss, and share content from a variety of sources on the open web. … … 81 82 82 83 == Changelog == 84 85 = 5.9.3 = 86 * Fixed bug that prevented Subscribers from being able to use the entire Nominate This flow. 83 87 84 88 = 5.9.2 = -
pressforward/trunk/vendor/composer/installed.php
r3350611 r3356897 4 4 'pretty_version' => '5.9.x-dev', 5 5 'version' => '5.9.9999999.9999999-dev', 6 'reference' => ' 8caec5267053fb4bc710661c9b26d5a87205cc97',6 'reference' => '3ad16ff9f581a411eb5e17fe52e371b7f69a91e2', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 86 86 'pretty_version' => '5.9.x-dev', 87 87 'version' => '5.9.9999999.9999999-dev', 88 'reference' => ' 8caec5267053fb4bc710661c9b26d5a87205cc97',88 'reference' => '3ad16ff9f581a411eb5e17fe52e371b7f69a91e2', 89 89 'type' => 'project', 90 90 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.