Agile project management as never seen before.
0
Запланирован

asignar personas a las tareas con drag&drop

Jos Vargas Paz 14 лет назад обновлен Ricardo 14 лет назад 0
a mano derecha se muestra una lista con el "equipo para el sprint", seria mas sencillo asignar a las personas soltándolas sobre las tareas sin tener que entrar al "edit"
Ответ
Ricardo 14 лет назад
Hola Jos!
Esto es algo que ya tenemos apuntado para hacer, y esperamos implementarlo en breve.
Gracias por el feedback!
0
Отвечен

No puedo hacer Login, me indica que el nombre de usuario es invalido cuando esto no es cierto

jaimedavidromero 14 лет назад обновлен Ricardo 14 лет назад 0
Mi nombre de usuario es jaimedavidromero, y cuando intento hacer login en scrumrf s siempre me dice que mi nombre de usuario no es valido
Ответ
Ricardo 14 лет назад
Hola Jaime!
Recibiste el mail de activación?
Un saludo
0
Отвечен

¿Se pueden borrar proyectos? ¿Cómo?

Roque Luis 13 лет назад обновлен Ricardo 13 лет назад 0
Ответ
Ricardo 13 лет назад
Hola Roque!
En esta versión no se pueden borrar proyectos, pero en breve se podrá en la versión mejorada que sacaremos durante febrero. 

Gracias por tu feedback y un saludo!
0
Отвечен

reordenar historias y tareas

Raúl Francisco Valdivieso Bohó 12 лет назад обновлен Ricardo 12 лет назад 0

Hola, deseo saber si hay forma de reordenar las historias de usuario y las tareas según mis propios criterios.

Ответ
Ricardo 12 лет назад

Hola!

En un principio no, esto es algo que vamos a añadir en la nueva versión.

Gracias y un saludo!

0

Quería sugerir que

Pass 13 лет назад 0
0
Исправлен

La duración del sprint no se pinta correctamente el el calendario

Abel Ruiz 14 лет назад обновлен Ricardo 14 лет назад 0
He creado un spring de 3 semanas de duración, sin embargo en el calendario se pinta como si durase solo dos semanas.
0

cambiar unidad de timpo del esfuerzo

Victor Garcia Morelli 12 лет назад 0

Una vez creado el proyecto ¿como se pude cambiar la unidad de tiempo del esfuerzo de cada tarea?

0
Исправлен

No actualiza correctamente el total de puntos de historia en la lista de historias

Abel Ruiz 14 лет назад обновлен Ricardo 14 лет назад 0

En la pantalla de historias, si modificas los puntos de historia de algún elemento, el total de puntos que se pinta enciam de la lista no se actualiza.


Lo mismo ocurre con la estimación y el número de tareas en la edición del sprint.

Ответ
Ricardo 14 лет назад
Apuntado! Gracias por el feedback!
0
Исправлен

PHP Error when creating a new sprint

BrianG 13 лет назад обновлен Ricardo 13 лет назад 0

PHP Error

Cannot modify header information - headers already sent by (output started at /homepages/44/d353854819/htdocs/tonkapps/scrumrf/protected/messages/en/gui.php:1)

/homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/CHttpRequest.php(657)

645     /**646      * Redirects the browser to the specified URL.647      * @param string $url URL to be redirected to. If the URL is a relative one, the base URL of648      * the application will be inserted at the beginning.649      * @param boolean $terminate whether to terminate the current application650      * @param integer $statusCode the HTTP status code. Defaults to 302. See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html}651      * for details about HTTP status code. This parameter has been available since version 1.0.4.652      */653     public function redirect($url,$terminate=true,$statusCode=302)654     {655         if(strpos($url,'/')===0)656             $url=$this->getHostInfo().$url;657         header('Location: '.$url, true, $statusCode);658         if($terminate)659             Yii::app()->end();660     }661 662     /**663      * Returns the user preferred language.664      * The returned language ID will be canonicalized using {@link CLocale::getCanonicalID}.665      * This method returns false if the user does not have language preference.666      * @return string the user preferred language.667      */668     public function getPreferredLanguage()669     {

Stack Trace

#0
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/CHttpRequest.php(657): header("Location: http://www.scrumrf.com/sprint/918", true, 302)
#1
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/CController.php(1005): CHttpRequest->redirect("/sprint/918", true, 302)
#2
  /homepages/44/d353854819/htdocs/tonkapps/scrumrf/protected/controllers/SprintController.php(493): CController->redirect(array("view", "id" => "918"))
488                 $users = $_POST['users'];489                 $this->saveUsers($users, $model->sprint_id);490                 491                 $transaction->commit();492                 user()->setFlash('success', t('msg', 'sprint.save.ok'));493                 $this->redirect(array('view', 'id' => $model->sprint_id));494             }495         } catch (Exception $e) {496             yiilog('Error creating sprint: ' . $e->getMessage(), 'error');497             user()->setFlash('error', t('msg', 'sprint.save.error'));498             $transaction->rollBack();
#3
  /homepages/44/d353854819/htdocs/tonkapps/scrumrf/protected/controllers/SprintController.php(255): SprintController->saveSprint(Sprint)
250 251         // Uncomment the following line if AJAX validation is needed252         $this->performAjaxValidation($model);253 254         if (isset($_POST['Sprint'])) {255             $this->saveSprint($model);256         }257         $durations = array(258             '1' => '1 ' . t('gui', 'gen.week'),259             '2' => '2 ' . t('gui', 'gen.week'),260             '3' => '3 ' . t('gui', 'gen.week'),
#4
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/actions/CInlineAction.php(50): SprintController->actionCreate()
#5
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/CController.php(300): CInlineAction->runWithParams(array())
#6
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/filters/CFilterChain.php(133): CController->runAction(CInlineAction)
#7
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/filters/CFilter.php(41): CFilterChain->run()
#8
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/filters/CFilterChain.php(130): CFilter->filter(CFilterChain)
#9
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/filters/CFilter.php(41): CFilterChain->run()
#10
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/CController.php(1122): CFilter->filter(CFilterChain)
#11
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/filters/CInlineFilter.php(59): CController->filterAccessControl(CFilterChain)
#12
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/filters/CFilterChain.php(130): CInlineFilter->filter(CFilterChain)
#13
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/CController.php(283): CFilterChain->run()
#14
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/CController.php(257): CController->runActionWithFilters(CInlineAction, array("accessControl", array("application.filters.YXssFilter", "clean" => "*", "tags" => "strict", "actions" => "all")))
#15
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/CWebApplication.php(328): CController->run("create")
#16
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/web/CWebApplication.php(121): CWebApplication->runController("sprint/create")
#17
+
  /homepages/44/d353854819/htdocs/tonkapps/yii/framework/base/CApplication.php(155): CWebApplication->processRequest()
#18
  /homepages/44/d353854819/htdocs/tonkapps/scrumrf/index.php(15): CApplication->run()
10 // specify how many levels of call stack should be shown in each log message11 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);12 13 require_once($globals);14 require_once($yii);15 Yii::createWebApplication($config)->run();
2011-11-30 21:36:45 Apache Yii Framework/1.1.7
Ответ
Ricardo 13 лет назад
Hi Brian!
Try now to check if it works ok.
Thanks for your feedback!
Cheers!
0
Отвечен

Sobre las tareas de las historias en la Pila del Sprint...

Jaime Muñoz 14 лет назад обновлен Ricardo 14 лет назад 1

cuando estoy en la pila del sprint y marco tareas para una historia a través del enlace + puedo mirar como se reflejan en el muro del sprint, todo correcto, pero cuando elijo una historia de esta pila de sprint y agrego tareas vía enlace "Nueva tarea " estas no aparecen en el muro del sprint, (creo que si debería aparecer)...

Ответ
Ricardo 14 лет назад
Hola Jaime!
Gracias por tu feedback! Tomo nota para solucionarlo durante esta semana.
Un saludo!


Сервис поддержки клиентов работает на платформе UserEcho