Plugin Directory

Changeset 2797672


Ignore:
Timestamp:
10/12/2022 09:25:06 AM (3 years ago)
Author:
seenthis
Message:

Name change on plugin

Location:
greenweb
Files:
35 added
3 edited

Legend:

Unmodified
Added
Removed
  • greenweb/trunk/README.txt

    r2775291 r2797672  
    1 === Apart ===
     1=== Sitestream ===
    22Contributors: seenthis, rhyme sthlm
    33Donate link: rhymesthlm.se
    4 Tags: imagestreaming, greenweb, carbon, save, apart
     4Tags: imagestreaming, greenweb, carbon, save, apart, sitestream
    55Requires at least: 3.0.1
    66Tested up to: 5.9.3
    7 Stable tag: 1.1.2
     7Stable tag: 1.1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 APART reduces your site’s carbon footprint and improves user experience by reducing its image data transfer and improving image load times.
     11SITESTREAM reduces your site’s carbon footprint and improves user experience by reducing its image data transfer and improving image load times.
    1212
    1313== Description ==
    1414
    15 APART reduces your site’s carbon footprint and improves user experience by reducing its image data transfer and improving image load times.
     15SITESTREAM reduces your site’s carbon footprint and improves user experience by reducing its image data transfer and improving image load times.
    1616
    1717Using our proprietary image streaming technology, we stream your content directly from our super fast and optimized, global CDN network directly to your site’s visitors. Data efficient, reliable and SEO friendly.
     
    5151e.g.
    5252
    53 1. Upload `apart.php` to the `/wp-content/plugins/` directory
     531. Upload `sitestream.php` to the `/wp-content/plugins/` directory
    54541. Activate the plugin through the 'Plugins' menu in WordPress
    55 1. Add the prefix provided from Apart into the input and volia you are done! Thanks for making the internet cleaner and faster.
     551. Add the prefix provided from Sitestream into the input and volia you are done! Thanks for making the internet cleaner and faster.
    5656
    5757== Frequently Asked Questions ==
    5858
    59 = Does APART work with CSS image backgrounds?  =
     59= Does SITESTREAM work with CSS image backgrounds?  =
    6060
    61 APART are working on a solution for handling basic CSS image backgrounds in upcoming releases
     61SITESTREAM are working on a solution for handling basic CSS image backgrounds in upcoming releases
    6262
    63 = What image file types does APART support for streaming?  =
     63= What image file types does SITESTREAM support for streaming?  =
    6464
    6565JPG and PNG.
    6666
    67 = Why are my website images blurry after implementing the APART script? =
    68 When blurry images are shown this is most likely a result of prefixing images on pages where the APART script is not implemented in the head tag. Make sure that the APART script is added to every page where the APART prefix is used.
     67= Why are my website images blurry after implementing the SITESTREAM script? =
     68When blurry images are shown this is most likely a result of prefixing images on pages where the SITESTREAM script is not implemented in the head tag. Make sure that the SITESTREAM script is added to every page where the SITESTREAM prefix is used.
    6969
    7070= Why are the images not streamed when I’m testing the website in a local development environment? =
    71 APART requires the images to be publicly accessible over the internet. If not, APART will fallback to the original image.
     71SITESTREAM requires the images to be publicly accessible over the internet. If not, SITESTREAM will fallback to the original image.
    7272
    7373= How does the solution work? =
    74 The first time an image is requested, e.g. when a visitor is access a page (or a crawler), a request for the image will be sent to the APART server. Since this is the first time the image is being requested, the image is not transcoded, so the visitor will simply be redirected to the original image source. In parallel the image will be downloaded and transcoded be APART. When transcoding of the image is completed, the following image requests will be streamed to any user visiting the site.
     74The first time an image is requested, e.g. when a visitor is access a page (or a crawler), a request for the image will be sent to the SITESTREAM server. Since this is the first time the image is being requested, the image is not transcoded, so the visitor will simply be redirected to the original image source. In parallel the image will be downloaded and transcoded be SITESTREAM. When transcoding of the image is completed, the following image requests will be streamed to any user visiting the site.
    7575
    7676
     
    7878
    7979== Changelog ==
     80
     81= 1.1.2 =
     82* Name change from Apart to Sitestream
    8083
    8184= 1.1.2 =
  • greenweb/trunk/admin/class-greenweb-admin.php

    r2743511 r2797672  
    5050     */
    5151    public function admin_enqueue_styles($hook) {
    52         if (!strpos($hook, 'apart-admin-display.php')) {
     52        if (!strpos($hook, 'admin-display.php')) {
    5353            return;
    5454        }
     
    6363     */
    6464    public function admin_enqueue_scripts($hook) {
    65         if (!strpos($hook, 'apart-admin-display.php')) {
     65        if (!strpos($hook, 'admin-display.php')) {
    6666            return;
    6767        }
     
    7474     */
    7575    public function set_admin_menu() {
    76         add_menu_page( $this->plugin_name, greenweb_globals\pluginName, 'manage_options', greenweb_globals\rootFolder.'/admin/partials/apart-admin-display.php');
     76        add_menu_page( $this->plugin_name, greenweb_globals\pluginName, 'manage_options', greenweb_globals\rootFolder.'/admin/partials/admin-display.php');
    7777    }
    7878}
  • greenweb/trunk/greenweb_globals.php

    r2774846 r2797672  
    66const latest = '/loader/latest.js';
    77const optiEnd = '/t?';
    8 const pluginName = 'Apart';
    9 const baseName = 'apart';
     8const pluginName = 'Sitestream';
     9const baseName = 'sitestream';
    1010const rootFolder = 'greenweb';
    11 const version = '1.1.2';
     11const version = '1.1.3';
    1212
    1313class greenweb_settings{
Note: See TracChangeset for help on using the changeset viewer.