Category: Articles

ChiliProject 2.0.0 RC2 Released

I just released ChiliProject 2.0.0RC2. It fixed some of the data bugs we found in the new ActsAsJournalized feature. I’m hoping this will be the final release candidate and that the next one will be the final release. Some of the new features we’ve added in 2.0.0 are really going to help me develop plugins …

Read more

Redmine Tip – Edit User Email Notifications

Redmine sends email notifications when specific events occur. Who gets notified about the event depends on the event and each user’s preference. Normally you will want to let users choose the setting that fits their email usage but on fast moving projects it can be useful to make sure everyone is notified of every change. …

Read more

Hide specific input field in CSS by name

Just learned that this trick works in browsers too (not just assert_select and jQuery). <input id="q" class="small" name="q" size="20" type="text" accesskey="f" /><input id="q" class="small" name="q" size="20" type="text" accesskey="f" /> input[name=q] {display: none;}input[name=q] {display: none;}

Read more