Search
Results (18291)
- Development: RE: How to search issues by their historical status?
- Hi Haihan, I suggest: <pre><code class="ruby"> issues_closed_yesterday_count = Issue.where('closed_on > ? AND closed_on < ?', D ... Date.yesterday.to_time.end_of_day).count issues_opened_yesterday_count = Issue.where('created_on > ? AND created_on < ?', ... Date.yesterday.to_time.end_of_day).count issues_opened_and_not_closed_yesterday_count = Issue.where('(created_on > ? AND created_on < ?) A ... Date.yesterday.to_time.end_of_day).count issues_opened_yesterday_and_still_opened_count = Issue.where('created_on > ? AND created_on < ?', ... his code, there could be mistakes. Cheers,
- Hello, i've got some issues with importing UTF-8 MySQL table to redmine ... .gsub(/\[ticket\:([^\ ]+)\ (.+?)\]/, '"\2":/issues/show/\1') # ticket:1234 ... dmine plugins: no plugin installed </pre>
- New to Redmine and Ruby/Rails in general, and cant seem to find the answer to my issue. I'm writing a plugin that has a single mode ... e please shed some light on this? Thanks!
- Open discussion: RE: Running Redmine as a Rails Engine
- Anyone? Maybe I should open an issue for this.
- Help: RE: Editing an issue - SystemStackError (stack level too deep)
- I now have this problem. I do not understan ... y also forgotten law. Tell me what you did.
- Plugins: RE: Smart issues sort plugin
- @Muditha, @Andrew, have you run "rake redmine ... omatically the substitution you made manually
- Plugins: RE: Smart issues sort plugin
- Muditha, I just installed the plugin on redm ... ot working correctly. I was able to fix the issue by replacing: redmine_smart_issues_sort/app/views/queries/_form.html.erb with: redmine_smart_issues_sort/rev/app/views/queries/2.3.2-_form.html.erb Hope that helps!
- When fetching changesets, I get a stacktrace ... e. Any idea what I need to do to fix this issue?
- Hi folks, Is there any plugin for inheritance/import of Issue categories across projects
- Open discussion: RE: Tasks evolution reporting using snapshots
- Hi Ivan, Activity tab shows: A new issue (feature, defect...) has been created. The status of the issue has been changed. The given issue has been closed. A note to the issue has been added. This means a changeset ... asks evolution but filter out "A note to the issue has been added." (not possible at least as w ... y. Also, we should be able to filter out new issues creation for some types like quotes. But ... Tasks hierarchy should be imediatly visible.
- I need to exclude the default status in status list when a issue is managed. This is because I need different ... from workflow. I find these istructions in issue_status.rb Returns the default status for new issues def self.default where(:is_default ... lugin_views_revisions 0.0.1 redmine_smart_issues_sort 0.3.1 redmine_spent_time ... 0.0.1 redmine_workload 1.0.2
- Help: RE: Error 500 when accessing an edited issue
- Try to uninstall all plug-ins and restart red ... to find if there is any plug-in has problem.
- *****IssueBackground***** I have changed SVN from ht ... is http://xxxx:81/svn/xxxx, there is no such issue I described below.* *****Issue Description***** I have been using redmin ... onfigured redmine to read it. now I found a issue that also reported by others but no real eff ... memory". ******What I have done for that issue******* 1.http://www.redmine.org/projects/ ... ***************** I think it is a general issue of large size repository when redmine try to ... the whole info. and testing process of this issue. Welcome any suggestions and help, thanks much.
- Plugins: RE: Redmine reminder plug-in error
- I have resolved the problem, thanks for your ... they have solution, it will help one who met issues to resolve quickly.
- Help: RE: Redmine+https svn link issue(revision history cannot been seen in repository)
- I have finally found the problem is Redmine s ... ong time to catch if the repo. are large.
- Hi, I have installed Redmine Impasse Plugi ... is_required? ></td> 19: < if tab[:name] == 'IssueCustomField' > 20: <td align="center"><= che ... .rb:318:in `render_tabs' Thanks, Krishna.
- Hi, everybody. If I want to know an issue's status of yesterday. I can do this: <pre> ... = JournalDetail. joins(:journal => :issue). where(:property => 'attr', :prop_key => 'status_id'). where("#{Issue.table_name}.id" => issue.id). where("#{Journal.table_name}.c ... DESC").first if detail status = IssueStatus.find(detail.value) else status = issue.status end </code></pre> But, I want to know how many issues were opened, and how many were closed at ye ... count it one by one. any one can help me?
- Hello, There are many situations where Red ... me people are watchers by default of any new issue of some project, but may opt-out easily. * ... o login a "must", so move away to some other issue tracker that allows pure e-mail based workflow.) Thank you for your attention.
- Help: RE: Subject Field - Required
- OK, the issue #12146 explains what is the reason (and workaround) for my problem. Cheers, Voranc
- Help: RE: Subject Field - Required
- Hi! I also have a problem with Required fi ... ver required when I change the status of the issue. So, if anybody knows if this functionality (required fields for different issue statuses) should work and HOW it should work ... apter Mysql2 Cheers, Voranc
- Help: RE: receive emails in redmine with IMAP
- I used to run under bitnami but many issues with upgrading the gems eventually led me b ... get more specific info on the bitnami forums.
- I see Markdown support was announced for vers ... : collapsed_journals 0.0.2 issue_hot_buttons 0.4.4 redmine_de ... mine_didyoumean 1.2.0 redmine_issue_checklist 2.0.5 redmine_knowledgeb ... redmine_wiki_extensions 0.6.4 </pre>
- Hi all, How are you? I am trying to instal ... lease, May someone help me? There are two issues (redmine is installed at folder /var/www/ht ... preciate any help you can give me, Roger
- Hi all, Before we use http svn and configu ... annot been seen from redmine. But another issue occurs. Revision history can not been seen f ... t to http svn. Now we are troubled with that issue. Need help! Thanks.
- Help: RE: [plugin-dev] question which model to extend for issue_category filtering
- well, writing down a problem sometimes helps ... d out within minutes, that a cloned view of @issues/_attributes@ and the following changed code ... ass="ruby"> <p><%= f.select :category_id, (@issue.project.issue_categories.reject {|c| c.archived }.collect ... d] }), :include_blank => true, :required => @issue.required_attribute?('category_id') %> </cod ... ine core classes without overriding the view?