Development

Changeset 7320 for plugins/sfJobQueuePlugin

You must first sign up to be able to contribute.

Show
Ignore:
Timestamp:
02/04/08 12:22:24 (5 years ago)
Author:
xavier
Message:

sfJobQueuePlugin: typo, renamed "runned" into "run"

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfJobQueuePlugin/trunk/config/schema.yml

    r7319 r7320  
    3535    created_at:          timestamp 
    3636 
    37   # a sfJobQueue gathers several jobs to be runned 
     37  # a sfJobQueue gathers several jobs to be run 
    3838  sf_job_queue: 
    3939    _attributes:         { phpName: sfJobQueue, package: plugins.sfJobQueuePlugin.lib.model } 
  • plugins/sfJobQueuePlugin/trunk/modules/sfJob/config/generator.yml

    r7319 r7320  
    2222        _edit:             - 
    2323        cancel:            { name: Cancel job, action: cancel, icon: /sf/sf_admin/images/delete.png } 
    24         run:               { name: Run job, action: run, icon: /sf/sf_admin/images/next.png, confirm: "Please be aware that it may take several minutes until this action will finish. If the job to be runned is huge, it may overload your webserver. In this case, you will prefer to run this job using the asynchronous job queue manager." } 
     24        run:               { name: Run job, action: run, icon: /sf/sf_admin/images/next.png, confirm: "Please be aware that it may take several minutes until this action will finish. If the job to be run is huge, it may overload your webserver. In this case, you will prefer to run this job using the asynchronous job queue manager." } 
    2525      actions: 
    2626        _create:           - 
  • plugins/sfJobQueuePlugin/trunk/modules/sfJob/templates/_list_td_actions.php

    r7231 r7320  
    55      <li><?php echo link_to(image_tag('/sf/sf_admin/images/delete.png', array('alt' => __('Cancel job'), 'title' => __('Cancel job'))), 'sfJob/cancel?id='.$sf_job->getId()) ?></li> 
    66    <?php endif; ?> 
    7     <li><?php echo link_to(image_tag('/sf/sf_admin/images/next.png', array('alt' => __('Run job'), 'title' => __('Run job'), 'onclick' => "return confirm('Please be aware that it may take several minutes until this action will finish. If the job to be runned is huge, it may overload your webserver. In this case, you will prefer to run this job using the asynchronous job queue manager.')")), 'sfJob/run?id='.$sf_job->getId()) ?></li> 
     7    <li><?php echo link_to(image_tag('/sf/sf_admin/images/next.png', array('alt' => __('Run job'), 'title' => __('Run job'), 'onclick' => "return confirm('Please be aware that it may take several minutes until this action will finish. If the job to be run is huge, it may overload your webserver. In this case, you will prefer to run this job using the asynchronous job queue manager.')")), 'sfJob/run?id='.$sf_job->getId()) ?></li> 
    88  </ul> 
    99</td>