Search
Results (18279)
- Hello. I moved redmine from version 3 to vers ... fter this upgrade I can't show attachment in issue. When I upload a file nothin appear ? Do you have an idea ? Regards Guidtz
- Open discussion: RE: How to open a new project?
- Hi, Thanks for the response. My purpose ... can't find in the web how to open a new bug issues project. Thanks
- Open discussion: RE: is it possible to recover deleted issues
- Thank you very much.
- Plugins: RE: Plugin: how to add button on issue list?
- Wonderfull, thanks a lot !!!!!!!! In my ja ... cript like : <pre> function call_qgis(evt, issues_ids_and_wtk) { // Very important! ... var jsonArr = []; issues_ids_and_wtk.split(",").forEach(function (it ... { jsonArr.push({ issue_id: array_ids_wkf[0], wkt: array_ids_wkf[1]} ... { alert(error); } } </pre>
- Plugins: RE: Plugin: how to add button on issue list?
- Use 'view_issues_index_bottom' hook. It renders at the bottom of issue list page but you can use js to move your el ... s desired. The hook is present in app/views/issues/index.html.erb. The hook also provides the list of issues in @issues.
- Help: RE: Refresh repository in Redmine after editing commit message
- FYI, I have edited wrong svn refID for one de ... is commit in @changesets@ table, and changed issue_id in @changesets_issues@.
- Hi everybody. I'm currently develop a plug ... ny that add a geometry (spatial database) to issues. This first plugin works fine. The second one add a infos and button on issue details to be able to send issue ID to a QGis plugin via WebSocket to be able ... # rewrite select for trackers on issue form // view_issues_show_details_bottom def view_issues_show_details_bottom(context={}) issue = context[:issue] project = context[:project] ... if project != nil && project.id == 24 && issue != nil # Afficher tous les custom f ... des défauts" pointe = Pointes.where(issue_id: issue.id) if pointe.first != ni ... html_button_click = "onClick=\"call_qgis('#{...
- Open discussion: RE: is it possible to recover deleted issues
- Is not possible: * https://www.redmine.org/issues/1380 * http://www.redmine.org/issues/7900 if you have a database backup maybe ... involved you would need a files backup too.
- Is it possible to recover an issue that was deleted?
- Open discussion: RE: redmine rest api - can we use operator > for int values ? get new issues from id.
- Thank you're right My param name must be issue_id, but I need > operator and not >= operator GET /issues.xml?issue_id=%3E10 doesn't work and all sample for wiki use >= ( %3E%3C ) do you know what's wrong ?
- Open discussion: RE: redmine rest api - can we use operator > for int values ? get new issues from id.
- <pre> GET /issues.xml?issue_id=%3E%3D10 </pre> example taken from wiki: [[Rest_Issues]]
- Help: RE: Relations on Gantt Chart
- Hi, we have got the same issue on the same version: Environment: Redmi ... rom debian repo, installed manualy), and the issue doesn't appear. So, whats the best way to ... (3.3.1-4+deb9u2) is the latest stable?
- Hi everyone, I try to get new Redmine issues with REST API and I can't , something like this : GET /issues.xml?id=%3E10 to get all issues with id > 10 but it's not working. Someone know if we can do that ? Thanks
- Open discussion: RE: Failure Upgrade from 3.3.4 to 4.0.2 on db:migrate
- No, I didn't manually change anything on the ... mine_dmsf 1.5.9 redmine_issue_templates 0.1.9 redmine_people ... mine_work_time 0.3.4 </pre>
- Open discussion: RE: Failure Upgrade from 3.3.4 to 4.0.2 on db:migrate
- Hofei - wrote: > i can reproduce this failu ... database. Have you added the index index_issues_on_parent_id manually in the past? I cannot ... earlier does not have an index with the name.
- Open discussion: RE: how to change status without "Edit issues" roles
- change status is disable !https://www.redmine.org/attachments/download/22698/redmine41.PNG!
- In redmine 2 we can only change the status when user reply to an issue !https://www.redmine.org/attachments/downlo ... G! workflow seem good if i check "Edit issues" i can edit all fields i want to change only the status
- Open discussion: RE: Failure Upgrade from 3.3.4 to 4.0.2 on db:migrate
- run alter table issues drop index index_issues_on_parent_id; on database
- Hello, have problems updating from version 3 ... rated (0.4666s) ====== Migrating to ChangeIssuesDescriptionLimit (20161010081301) == 20161010081301 ChangeIssuesDescriptionLimit: migrating ================ ... ter_name() -> 0.0001s -- change_column(:issues, :description, :text, {:limit=>16777216}) -> 13.2286s == 20161010081301 ChangeIssuesDescriptionLimit: migrated (13.2296s) ====== ... ======== Migrating to AddIndexOnChangesetsIssuesIssueId (20161126094932) == 20161126094932 AddIndexOnChangesetsIssuesIssueId: migrating ================ -- add_index(:changesets_issues, :issue_id) -> 0.0339s == 20161126094932 AddIndexOnChangesetsIssuesIssueId: migrated (0.0342s) ======= Migrating to AddIndexOn...
- Help: RE: How can I see the associated revisions on issues.
- I fixed after I added * to Referencing keywords.
- Hi I installed localizable plugin. Inte ... rd: 44.1ms) Started GET "/projects/works_af/issues/gantt" for 10.184.170.51 at 2019-03-25 11:1 ... ers/ganttchart_helper.rb:364:in `subject_for_issue' plugins/ankoalm_ganttchart/app/helpers/g ... ganttchart_helper.rb:296:in `block in render_issues' plugins/ankoalm_ganttchart/app/helpers/ ... /helpers/ganttchart_helper.rb:291:in `render_issues' plugins/ankoalm_ganttchart/app/helpers/ ... lib/redmine/sudo_mode.rb:63:in `sudo_mode'
- Is it possible to close an issue for good, making it read-only? Like we do in ... sn't restrict adding notes or time logs, etc.
- Hello, I had to recover a redmine database ... ALTER TABLE users AUTO_INCREMENT=n;" But the issue persists. Any assistance would be apprec ... 4 Distrib 5.6.42 Ruby: 2.3.8 Rails: 4.2.8
- Open discussion: RE: Target version in Subtasks and Related issues
- There are some requests for this feature, please see #11969.
- Help: RE: How to get all the issues with Java Api - I didn't get all the issues following the doc - Java API Redmine
- Hi, Fetch separate lists using different status codes. For fetching list(list1) of closed issues use: params.put("status_id", "5"); For fetching list(list2) of open issues use: params.put("status_id", "1"); Then ... n combine the lists using list1.addAll(list2)