Project

General

Profile

Search

Results (18319)

Plugins: RE: LightBox 2 by Tobias Fischer internal error when view pdf
Thanks for the bug report. Please report bugs to the github issue tracker in the future: https://github.com/paginagmbh/redmine_lightbox2/issues/ This issue is now tracked at https://github.com/paginagmbh/redmine_lightbox2/issues/8 I found and fixed the bug, however, th ... the lightbox... See #19435 for more details. 2015-03-20 20:02
Help: RE: Create new issue or user will happen 502 issue (Proxy Error) and i also cannot found the mongrel.log
Could you kindly tell me how to contact bitna ... belong to Redmine and this Forum, thank you! 2015-03-20 08:54
Help: RE: Create new issue or user will happen 502 issue (Proxy Error) and i also cannot found the mongrel.log
Please contact bitnami team. 2015-03-20 08:47
Help: Create new issue or user will happen 502 issue (Proxy Error) and i also cannot found the mongrel.log
Error message: Proxy Error The proxy serve ... e the request POST /redmine/projects/test_01/issues. Reason: Error reading from remote server ... se is my Redmine installed folder structure. 2015-03-20 08:25
Help: RE: new field added with a plugin -> only displays in journal the ID
Mario Primus wrote: > issue_patch > > belongs_to :responsible, :class ... re> .... module Hooks class HelpdersIssuesHook < Redmine::Hook::ViewListener def helper_issues_show_detail_after_setting(context={}) ... (:name) end ... .... </pre> 2015-03-19 15:50
Development: RE: What is lft in table issue of redmine
Who can help me! Please!!! 2015-03-19 06:19
Help: RE: ruby issue ? / (migrate to 3.0.1) ArgumentError (compar ... b : @cached_cleared_on <= settings_updated_on
I have the same error. Can you please tell me ... = Time.now.to_f </pre> in settings.rb 2015-03-18 18:48
Help: RE: ruby issue ? / (migrate to 3.0.1) ArgumentError (compar ... b : @cached_cleared_on <= settings_updated_on
PS some info : /usr/local/redmine# RAILS_E ... talled root@1ssd00054:/usr/local/redmine# 2015-03-18 13:55
Help: ruby issue ? / (migrate to 3.0.1) ArgumentError (compar ... b : @cached_cleared_on <= settings_updated_on
sorry but I am a ruby newbie and this looks like a ruby issue ... I installed redmine 3.0.1 on a debian ... urate as I added some debug messages) the issue is here in app/models/setting.rb: > if sett ... decimal is working ?? thanks for any help ! 2015-03-18 12:13
Open discussion: Export to PDF problem while exporting Arabic text to pdf
We have a problem in exporting arabic text in issues list to pdf report using redmine version 2. ... Arabic locale. Still we are facing the same issue. 2015-03-18 03:47
Help: new field added with a plugin -> only displays in journal the ID
issue_patch belongs_to :responsible, :class_nam ... ange from UserName1 to Useranme2 Thanks. 2015-03-17 07:55
Development: RE: What is lft in table issue of redmine
You cannot sort by @lft@ / in a tree and anot ... ot sure what you'd need to query to get that. 2015-03-16 14:18
Development: RE: What is lft in table issue of redmine
But I want sort by with rank of issue.Rank is new column which I add into table issue. Example: Issue A(id = 1, rank = 2) has two sub issue:issue a1(id=2, rank = 2), issue a2(id:3 rank 1); Issue B(id = 4, rank = 1).in current, (issue.descendants.visible.sort_by(&:lft)) =>[A,a1, ... solve my problem!!!Please help me!Thanks all! 2015-03-16 04:46
Help: Initial Configuration Fails with NameError
I'm trying to install Redmine 3 on a brand ne ... eems similar to, but is not the same as, the issues at http://www.redmine.org/boards/2/topics/45380 and here http://www.redmine.org/issues/18891. The problem looks like it should ... formation. Thanks in advance for your advice! 2015-03-16 03:34
Development: RE: What is lft in table issue of redmine
... and I had always thought that a nested set _always_ represented a binary tree... 2015-03-15 14:49
Development: RE: What is lft in table issue of redmine
Binary trees are also very interesting, but d ... d by Redmine is not a binary tree at all. Issues in Redmine can be put in a tree structure, ... given parent immediately follow that parent. 2015-03-14 09:10
Open discussion: Workflow control on custom fields.
I have introduced a new custom field, "Root C ... nly want this set when a developer closes an issue or maybe even when resolved. In fact, I would like to be invisible until the issue is resolved then become required. How can I do this? 2015-03-14 02:21
Open discussion: RE: How can I assign an issue to a non-member?
Jan Niggemann (redmine.org team member) wrote ... t into the future version as a new feature ? 2015-03-14 02:13
Open discussion: RE: How can I assign an issue to a non-member?
You can't. 2015-03-14 00:48
Development: RE: What is lft in table issue of redmine
Google "binary tree"... 2015-03-14 00:45
Plugins: [testlink] Connexion between Redmine and Testlink
Hi everybody, I have *testlink 1.9.13* an ... information. On test link side, i had an issue tracker configuration but when i want to try ... est plan. here is the configuration : <issuetracker> <apikey>XXXX</apikey> <uribase>htt ... w>http://XXX.XXXX.XXX/redmine/projects/devre/issues</uriview> <projectidentifier>devre</projectidentifier> </issuetracker> So i'm looking for *any solution ... your time and sorry for my english, Romain 2015-03-13 11:38
Help: problem to auto close issue with commit git
Hi I have à problem with commit to auto close issue. In spite of after configure repository set ... I user Bitnami with redmine 3.0.0 Thx 2015-03-13 11:33
Help: Can't get Redmine to work under Apache2
Hello, I have installed Redmine along this ... </pre> Can anybody help me with this issue? I haven't got ideas anymore. Many thanks! 2015-03-13 10:12
Development: What is lft in table issue of redmine
issue_list(issue.descendants.visible.sort_by(&:lft)) do |child, level|, in issue_helper. But I do'nt undertand why redmine sort_by(&:lft) 2015-03-13 06:06
Help: RE: How to rebuild Issue nested set tree
Based on "Swinging From Tree to Tree Using CT ... /static/ltree.html DROP TABLE IF EXISTS tmp_Issues; CREATE TABLE tmp_Issues AS WITH RECURSIVE t AS ( SELECT 1 AS Lev ... S Path, i.Id, i.Parent_Id --, Subject FROM Issues AS i WHERE i.Parent_Id IS NULL AND i.P ... Id, i.Parent_Id --, Subject FROM t JOIN Issues AS i ON t.Id = i.Parent_Id ) SELECT Row_N ... ere. ToDo: Set Root_Id for siblings. UPDATE Issues SET Root_Id = Id WHERE Parent_Id IS NULL AN ... part-1-adjacency-to-nested-sets.aspx UPDATE Issues AS i SET Lft = nst.Lft, Rgt = nst.Rgt F ... Level + ( SELECT COUNT(*) * 2 FROM tmp_Issues AS sub WHERE sub.Path <@ i.Path ) - 1 AS Rgt FROM tmp_Issues AS i --ORDER BY R; ) AS nst -- Nested se ... .Project_Id = 1; DROP TABLE IF EXISTS tmp_Issues; -- vi: set ts=8 sw=8 nowrap: </pre> ... k with tab stop (usually) default to 8 chars. 2015-03-12 18:22
(5101-5125/18319)