Difference between revisions of "Redmine"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 11: Line 11:
 
By default, Redmine uses [[Textile markup]].
 
By default, Redmine uses [[Textile markup]].
 
===Pages===
 
===Pages===
* [[/folders]]: where Redmine keeps all the bits of itself
+
* '''subpages''':
* [[/migration]]: how to migrate a Redmine installation from one server to another
+
** [[/folders]]: where Redmine keeps all the bits of itself
* [[Ruby on Rails]] items which come into play (Redmine uses RoR, so it helps to know something about how RoR works when diagnosing problems with Redmine configurations. Many problems may in fact be RoR issues rather than Redmine issues):
+
** [[/migration]]: how to migrate a Redmine installation from one server to another
** [[/rake]]:  Rake is part of RoR, but each RoR application tends to have its own set of Rake commands.
+
** [[/rake]]:  Rake is part of [[Ruby on Rails]], but each RoR application tends to have its own set of Rake commands.
** [[Gemfile]]: Redmine's Gemfile is typically in <code>/usr/share/redmine</code>.
+
* '''related pages''':
* [[User:Woozle/Redmine]]: Woozle's notes
+
** [[Gemfile]]: Redmine's Gemfile is [[/folders|typically]] in <code>/usr/share/redmine</code>.
 +
** [[Phusion Passenger]] is an interface between [[Apache web server]] and Ruby; adds some directives to Apache
 +
** [[Ruby on Rails]] items which come into play (Redmine uses RoR, so it helps to know something about how RoR works when diagnosing problems with Redmine configurations. Many problems may in fact be RoR issues rather than Redmine issues):
 +
** [[User:Woozle/Redmine]]: Woozle's notes
 
* '''Errors''':
 
* '''Errors''':
 
** [[incompatible character encodings: UTF-8 and ASCII-8BIT]]
 
** [[incompatible character encodings: UTF-8 and ASCII-8BIT]]
 +
** [[/Internal Server Error]]
  
 
==Links==
 
==Links==

Latest revision as of 19:09, 7 March 2020

About

Redmine is web-based project management software written in Ruby. It includes integrated wiki, forum, document management, calendar, and other features.

By default, Redmine uses Textile markup.

Pages

Links

How to

  • Admin:
    • Restart Redmine (without rebooting): sudo touch /usr/share/redmine/tmp/restart.txt ([1][2])
  • HowTo configure Apache to run Redmine
    • assumes you have access to mod_ruby
    • seems to be assuming you want to run it through WEBrick (makes Apache listen to port 3000) -- why?
  • 2008-03-14 deleting users - maybe there's a better way by now?
  • How to move wiki pages to another project's wiki
  • Subpages: unlike with MediaWiki, the Redmine wiki database explicitly supports parent-child relationships between pages. To attach a subpage to its parent page, "Rename" the page and then select the desired parent page from the dropdown box. (This is described here also.) The page name does not actually change (unless you actually change it), so the "Redirect existing links" checkbox is irrelevant.
  • edit an issue (as opposed to adding an update entry) -- assuming your role has the necessary permission, there is supposed to be "more" link next to the "Change properties" header. If you click on that, it will let you edit the original issue description. However, this doesn't seem to work in Redmine 2.x. What still does work is if you go to the issue list, hover over the line for the issue you want to edit (anywhere that isn't a link) -- the mouse cursor changes a bit to add a sort of box/stack shape on its lower right -- and then right-click. You will get a custom Redmine menu. Clicking "Edit" lets you edit the original issue description.
  • Phusion Passenger seems to be a thing that Redmine uses

Discussions

Reference

Official