Title: TDD Progress Bar
Author: Taylor Dewey
Published: <strong>18 de noviembre de 2011</strong>
Last modified: 2 de junio de 2012

---

Buscar plugins

![](https://ps.w.org/tdd-progress-bar/assets/banner-772x250.png?rev=490582)

Este plugin **no se ha probado con las últimas 3 versiones mayores de WordPress**.
Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas 
de compatibilidad cuando se usa con las versiones más recientes de WordPress.

![](https://s.w.org/plugins/geopattern-icon/tdd-progress-bar_183f23.svg)

# TDD Progress Bar

 Por [Taylor Dewey](https://profiles.wordpress.org/taylorde/)

[Descargar](https://downloads.wordpress.org/plugin/tdd-progress-bar.0.5.2.zip)

 * [Detalles](https://es.wordpress.org/plugins/tdd-progress-bar/#description)
 * [Valoraciones](https://es.wordpress.org/plugins/tdd-progress-bar/#reviews)
 *  [Instalación](https://es.wordpress.org/plugins/tdd-progress-bar/#installation)
 * [Desarrollo](https://es.wordpress.org/plugins/tdd-progress-bar/#developers)

 [Soporte](https://wordpress.org/support/plugin/tdd-progress-bar/)

## Descripción

TDD Progress Bar allows you to track the progress of multiple projects. Actually,
as many as you’d like. A cool feature is the ability to «race» multiple projects
at once. Progress bars are managed in the admin side and displayed using shortcode.
Oh, and did I mention it has a very pretty animation?

### Usage

In the menus, you’ll see a new menu for «Progress Bars» which is what you’ll use
to add and manage progress bars. There’s also an area here for settings, but honestly
if you never touch them, things will work fine.

After configuring a progress bar, insert it anywhere you’d like with shortcode.

 * Simple example: `[progress id=32]`
 * Race multiple bars: `[progress id=32,35,54]`
 * Set the bar’s width: `[progress ids=12,33 width="25%"]`
 * Set the height of the bar `[progress ids=12 height=»50px»]
 * Align Center: `[progress ids=4 width="50%" class="aligncenter"]`

Note that «id» and «ids» are interchangeable

Or use the widget which allows you to pick bars to display

## Capturas

 * [[
 * A Progress Bar «race»
 * [[
 * Progress Bar management page showing all the colors available
 * [[
 * A solo Progress Bar
 * [[
 * Bar Options

## Instalación

Standard plugin installation procedures apply.

## FAQ

  It doesn’t look right..

This project uses some cutting-edge CSS3 to make things look cooler like drop shadow,
inner-shadow, border-radius, etc. If it doesn’t look right in your browser first,
consider upgrading, second: let me know what browser you’re using to see if I want
to consider support. Things should degrade gracefully for non-cutting edge browsers(
although IE6 is still going to look like crap no matter what you do). You’re welcome
to write your own CSS to override what I’ve already written (or un-check «Default
Styles» on the settings page and roll-yer-own). Of course, if it’s supposed to look
right and it isn’t, then there may be issue you should let me know about…

  How do I use the filter hook to modify a percentage?

Add this to your functions.php file, or your own plugin.

You can use this to add 10%, like the example above, or do something cool like pull
in data from an external API. If you come up with something fun and clever, I’d 
love to feature it!

## Reseñas

No hay valoraciones para este plugin.

## Colaboradores y desarrolladores

«TDD Progress Bar» es un software de código abierto. Las siguientes personas han
colaborado con este plugin.

Colaboradores

 *   [ Taylor Dewey ](https://profiles.wordpress.org/taylorde/)

[Traduce «TDD Progress Bar» a tu idioma.](https://translate.wordpress.org/projects/wp-plugins/tdd-progress-bar)

### ¿Interesado en el desarrollo?

[Revisa el código](https://plugins.trac.wordpress.org/browser/tdd-progress-bar/),
echa un vistazo al [repositorio SVN](https://plugins.svn.wordpress.org/tdd-progress-bar/)
o suscríbete al [registro de desarrollo](https://plugins.trac.wordpress.org/log/tdd-progress-bar/)
por [RSS](https://plugins.trac.wordpress.org/log/tdd-progress-bar/?limit=100&mode=stop_on_copy&format=rss).

## Registro de cambios

#### 0.5.2

 * FIX: An issue with the minified CSS resulted in ugly progress bars unless WP_DEBUG
   was set to true. Thanks to @maximus85018 for pointing it out.

#### 0.5.1

 * Fixed an issue where all the shortcodes in the Progress Bar Administration Panel
   were displaying the same.
 * Now allows for two digit precision floating numbers on percentages inputed, calculated,
   and the start/end values.

#### 0.5

 * UPGRADE NOTICE: Because of the change to how bars in the widget are selected 
   and stored your widgets will not display properly until you re-configure them.
   Sorry for any inconvenience, but I thought the new interface was totally worth
   it.
 * Much easier to select bars to display in the widget thanks to Chosen.js.
 * Custom Colors! Now possible to set custom colors for each bar using the very 
   nice miniColors color picker
 * Lots of sanitization behind the scenes to make the plugin more secure
 * Height options. It’s now possible to set the height of the progress bar(s) in
   the shortcode by passing a CSS height value. See «Usage» for an example

#### 0.4

 * Progress bars can now be defined using a percentage or two numbers ( x of y )
   and let the plugin do the calculation
 * The text display on the bar itself can be nothing, the percentage, the two numbers,
   or both. The global setting to turn this on and off still exists.
 * Changed the checkbox on the admin page to make it clear it is a global «off» 
   switch for bar text, not just percentage.
 * Added a filter hook for the percentage being shown. This provides the ability
   to hook in your own method of calculating percentages. The hook name is `tdd_pb_calculated_percentage`

#### 0.3.5

 * Fixed: The malformed CSS classes were still present in the minified file causing
   errors. This has been fixed.

#### 0.3.4

 * SVN issue means anyone downloading 0.3.3 may have only received a subset of the
   files needed. This is a version bump to get around that, no other changes.

#### 0.3.3

 * Fixed: Some CSS classes were malformed causing the wrong color progress bar to
   display.

#### 0.3.2

 * Added a description textbox to the progress bar widget. Displays below the progress
   bar.
 * Modified the title tag of the progress bar to include the percentage.
 * Added role=»progressbar» and aria hints to the progress bar container
 * Fixed an issue where the title of the widget instance wasn’t be included in the
   widget admin form container header. (confusing, I know). Basically, it’s easier
   to see what the widgets are when they are all collapsed.
 * Animation Javascript is now loaded minimized when WP_DEBUG == false
 * Props to user ablereach for providing the input for much of this update, specifically
   the input on accessibility.

#### 0.3.1

 * Now loads a minimized and optimized version of the stylesheet when WP_DEBUG =
   = false
 * Stylesheet run through prefixr which may broaden browser support for the advanced
   CSS3 bling I use.

#### 0.3

 * New Colors! Added Black and Silver to the mix.
 * Updates the CSS classes to all be prefixed by tdd_pb. This may break any custom
   CSS you were using, but it eliminates conflicts with other themes and plugins.
 * Adds basic widget functionality making it much easier to add progress bars into
   widgetized areas.

#### 0.2.1

 * fixes an issue where the get_text_domain() function was referencing a non-existant
   directory and throwing an error

#### 0.2

 * Fixes an issue where the «quick edit» link (and others) would not show up on 
   the Manage Posts screen.
 * Also a version bump to 0.2 (which should have happened instead of 0.1.3)

#### 0.1.3

 * Given the major change to the CSS, the javascript to make things animate also
   had to change pretty extensively. One side effect is that the animations on a
   page will eventually slow to a standstill at the rate of about 1-2 pixels every
   15 seconds or so. The animation is still a work in progress…
 * Major bug fixes for the CSS to show up in, well, pretty much everything but Chrome.
   Didn’t realize I was using an unsupported style.
 * Small CSS fix for the «Strawberry» color – now shows up correctly
 * Quick Edit mode on the «Manage Progress Bars» page now has the ability to change
   percentage and bar color. No need to specifically edit the progress bar now.
 * Added the function tdd_pb_get_bars() function, which could be used in templates,
   but I’m going to leave undocumented for the moment so If it needs to change, 
   it can. It’s mostly designed for internal use.
 * Added [tdd_pb] as a shortcode alias for [progress]. I think most people will 
   use [progress], but I wanted to use [tdd_pb] since it’s all over the code
 * The Default CSS and Javascript are now added to the progress bar pages in wp-
   admin.
 * Progress bars are now displayed in wp-admin on the «Manage Progress Bars» and
   the «Edit Progress Bar» screens

#### 0.1.2

 * Settings page actually works now
 * Settings page now references **FILE** instead of some arbitrary tag.

#### 0.1.1

 * Left some debugging code for the advanced debug bar in the script. Have to remove
   it to make this thing work.

#### .1

The first version admin side as well), and remove the action that adds the styles
to the public side.

#### 0.1.2

 * If you’d like the settings page to work, upgrade.

#### 0.1.1

 * Blocking bugfix. Plugin won’t work unless you upgrade

#### .1

Yes, you should totally upgrade to the first version released…

## Meta

 *  Versión **0.5.2**
 *  Última actualización **hace 14 años**
 *  Instalaciones activas **20+**
 *  Versión de WordPress ** 3.3 o superior **
 *  Probado hasta **3.3.2**
 *  Idioma
 * [English (US)](https://wordpress.org/plugins/tdd-progress-bar/)
 * Etiquetas:
 * [progress](https://es.wordpress.org/plugins/tags/progress/)[shortcode](https://es.wordpress.org/plugins/tags/shortcode/)
   [widget](https://es.wordpress.org/plugins/tags/widget/)
 *  [Vista avanzada](https://es.wordpress.org/plugins/tdd-progress-bar/advanced/)

## Valoraciones

 3 de 5 estrellas.

 *  [  1 valoración de 5 estrellas     ](https://wordpress.org/support/plugin/tdd-progress-bar/reviews/?filter=5)
 *  [  0 valoraciones de 4 estrellas     ](https://wordpress.org/support/plugin/tdd-progress-bar/reviews/?filter=4)
 *  [  1 valoración de 3 estrellas     ](https://wordpress.org/support/plugin/tdd-progress-bar/reviews/?filter=3)
 *  [  0 valoraciones de 2 estrellas     ](https://wordpress.org/support/plugin/tdd-progress-bar/reviews/?filter=2)
 *  [  1 valoración de 1 estrellas     ](https://wordpress.org/support/plugin/tdd-progress-bar/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/tdd-progress-bar/reviews/#new-post)

[Ver todas las valoraciones](https://wordpress.org/support/plugin/tdd-progress-bar/reviews/)

## Colaboradores

 *   [ Taylor Dewey ](https://profiles.wordpress.org/taylorde/)

## Soporte

¿Tienes algo que decir? ¿Necesitas ayuda?

 [Ver el foro de soporte](https://wordpress.org/support/plugin/tdd-progress-bar/)

## Donar

¿Te gustaría apoyar el progreso de este plugin?

 [ Dona a este plugin ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FEQG5KTTPRRXS)