redmine | redmine code source - Official Subversion repository

 by   redmine Ruby Version: 5.0.5 License: No License

kandi X-RAY | redmine Summary

kandi X-RAY | redmine Summary

redmine is a Ruby library typically used in Web Site applications. redmine has no bugs and it has medium support. However redmine has 7 vulnerabilities. You can download it from GitHub.

Mirror of redmine code source - Official Subversion repository is at https://svn.redmine.org/redmine - contact: @vividtone or maeda (at) farend (dot) jp
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              redmine has a medium active ecosystem.
              It has 4765 star(s) with 2267 fork(s). There are 395 watchers for this library.
              OutlinedDot
              It had no major release in the last 6 months.
              redmine has no issues reported. There are 6 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of redmine is 5.0.5

            kandi-Quality Quality

              redmine has 0 bugs and 0 code smells.

            kandi-Security Security

              redmine has 7 vulnerability issues reported (0 critical, 2 high, 5 medium, 0 low).
              redmine code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              redmine does not have a standard license declared.
              Check the repository for any license declaration and review the terms closely.
              OutlinedDot
              Without a license, all rights are reserved, and you cannot use the library in your applications.

            kandi-Reuse Reuse

              redmine releases are not available. You will need to build from source code and install.
              redmine saves you 148800 person hours of effort in developing the same functionality from scratch.
              It has 153983 lines of code, 9192 functions and 1716 files.
              It has high code complexity. Code complexity directly impacts maintainability of the code.

            Top functions reviewed by kandi - BETA

            kandi has reviewed redmine and discovered the below as its top functions. This is intended to give you an instant insight into redmine implemented functionality, and help decide if they suit your requirements.
            • Require a new plugin instance .
            • Parses the lines of a line .
            • Returns the Gravatar hash for the given email .
            • Searches all keys in the cache .
            • Creates an image tag .
            • Creates a text field
            • HTML markup .
            • Receives email from temporary file
            Get all kandi verified functions for this library.

            redmine Key Features

            No Key Features are available at this moment for redmine.

            redmine Examples and Code Snippets

            No Code Snippets are available at this moment for redmine.

            Community Discussions

            QUESTION

            Grafana graph bars uneven
            Asked 2021-Jun-11 at 09:41

            I wanted to show the number and status of Redmine bugs per day through Grafana. My X-axis is time, and as time goes on, my bar graph is sometimes uneven, and I don't know what's going on. Does anyone know how to do to make my bar graph even?

            My SQL:

            ...

            ANSWER

            Answered 2021-Jun-11 at 09:40

            Your dashboard time range has To: now - so, that's current time.

            Use now/d in To - that's end of current day (and also now-7d/d will be good From in this case).

            Source https://stackoverflow.com/questions/67916147

            QUESTION

            How to call function when post request succeed in Modelviewset
            Asked 2021-Jun-07 at 20:30
            # views.py
            import schedule_update.send_the_result
            
            class UpdatedTypeViewSet(viewsets.ModelViewSet):
                queryset = Updated_Type.objects.all()
                serializer_class = UpdatedTypeSerializer
                # Is it correct to code here, if I would like to call function when post request succeed, and how?
            
            ...

            ANSWER

            Answered 2021-Jun-07 at 20:30

            Django Rest Framework being an abstraction over Django, implements Web methods through actions which is little different from the basic HTTP protocols. For example: POST is implemented through create method.

            Equivalent ModelViewSet method:

            Source https://stackoverflow.com/questions/67875929

            QUESTION

            Get second last value in each row of dataframe, R
            Asked 2021-May-14 at 14:45

            I am trying to get the second last value in each row of a data frame, meaning the first job a person has had. (Job1_latest is the most recent job and people had a different number of jobs in the past and I want to get the first one). I managed to get the last value per row with the code below:

            first_job <- function(x) tail(x[!is.na(x)], 1)

            first_job <- apply(data, 1, first_job)

            ...

            ANSWER

            Answered 2021-May-11 at 13:56

            You can get the value which is next to last non-NA value.

            Source https://stackoverflow.com/questions/67486393

            QUESTION

            How to stop gmail from opening the email when I click the button I added to it with tampermonkey?
            Asked 2021-May-08 at 18:33

            I did this tampermonkey script to parse my gmail inbox items and add a button linking to our Redmine Issue Tracker, so I can open the thread without having to open the email. This button I added, immediately open a new tab and switch focus to it.

            It works fine, except that every time I click the button, it also opens the email on the Gmail page/browser tab. To fix this, I added a setTimeout(function() { window.history.go(-1); }, 1000) to jump back after opening the link.

            The problem is that this does not allow me to open several issues at once, i.e., by holding the Ctrl+Click because it opens the email and jumps back (big flickering).

            How could I stop the email from opening when I click on the button I added?

            I tried setting the timeout to 0, i.e., setTimeout(function() { window.history.go(-1); }, 0), but this does not helps because GMail opens the email both, in the current browser tab/page and in a new page (along with my Redmine page), then I have 2 new pages opened when I click my button with Ctrl+Click.

            1. Is there something I could add to setTimeout(..., 0) which could cancel the email opening before it starts? (So I can open several tabs at once by Holding the Ctrl button)
            2. Or is there a way to remove the click event from opening the email when I click on the button I just added? (So I can open several tabs at once by Holding the Ctrl button)
            ...

            ANSWER

            Answered 2021-May-08 at 18:33

            Simply preventing the event from propagating up to Gmail's click listener on the row does the trick:

            Source https://stackoverflow.com/questions/67450734

            QUESTION

            Running python cgi script with sudo on lighttpd
            Asked 2021-Feb-21 at 21:03

            thanks for reading!

            I connected an adafruit neopixel to my Raspberry Pi Zero (1. generation) and got them working with test python code.

            As the next step I wanted to generate a webpage with buttons controlling the neopixel. I mostly followed this tutorial https://www.hackster.io/mjrobot/iot-controlling-a-raspberry-pi-robot-over-internet-6988d4#toc-step-5--installing-the-lighttpd-webserver-8

            At first I got a simple bash cgi script running, which created and wrote the current time into a file. Switching to a python cgi script went fairly easy without changing any configurations file, which left me wondering. But running the test python code from the html is simply not working. As with previous problems I started reading and tinkering but it seems that any solution I tried, doesn't work for me.

            I can't recount (working and reading the past days on this) everything I did but I added www-data to the sudoer group, I created a file called 010_www-data-nopasswd in the /etc/sudoers.d directory with www-data ALL=(ALL) NOPASSWD: ALL as content.

            I added www-data to the groups gpio, i2c and spi. I ran sudo visudo and added www-data ALL=(ALL:ALL) ALL and www-data ALL = NOPASSWD: /var/www/lighttpd/cgi-bin/neopixelTest.py and still it won't work.

            I tried bash cgi script to call the test python script with sudo and it works! So I think it boils down to this.

            I've read, that in the config files there is a line like ".py" => "/usr/bin/python" telling lighty to call /usr/bin/python for cgi scripts ending with .py, so I came up with the idea to put sudo into this line, so that basically every python script gets run as sudo. Really not a good thing, but I think this whole project is more quick and dirty and better than running lighty as root. But I can't find this line.

            This is my /etc/lighttpd/lighttpd.conf file.

            ...

            ANSWER

            Answered 2021-Feb-02 at 15:17

            cgi.assign = ( "" => "" ) tells lighttpd to execute the cgi scripts directly (so they must be marked executable (chmod +x)) and should have #!/usr/bin/python3 or similar as the first line.

            For the specific CGI scripts that need to run as root, you might create a wrapper script called my-script-name in cgi-bin which exec's sudo

            Another alternative is to put all privileged scripts into a subdirectory, and create a lighttpd condition

            Source https://stackoverflow.com/questions/66001881

            QUESTION

            Builtin Platform Driver __initcall Not Called on Linux Kernel Init
            Asked 2021-Feb-13 at 23:24

            Background

            I am bringing up a Linux kernel via Yocto for some vendor-provided embedded hardware. I have configured the image to boot via fitImage with an initramfs and no rootfs (there is persistent storage but this is entirely for userspace application use). Think PXE live image and you won't be far off.

            Things have been going well until my initramfs image crossed the ~128MB mark. Below this and everything boots as expected and all drivers are bound without issue. Above this mark and the kernel still boots but many drivers, though not all, are not bound. This is quite perplexing as all drivers are statically built into the kernel (no modules are used on this platform). Unfortunately, one of these modules runs the platform watchdog which causes entirely predictable reboots.

            Thus far I have verified that all of the symbols are present in the vmlinux image:

            ...

            ANSWER

            Answered 2021-Feb-13 at 23:24

            So, like most kernel issues the real problem was not where I thought it was. As it turns out, the problem was caused by one of the other drivers earlier in the init list hanging the core, preventing the watchdog driver from being registered. How this is affected by the initramfs is beyond me and is its own question.

            For anyone who comes across this in the future, the answers to my specific questions above are listed below:

            1. How can I verify a given symbol is included in the final linux.bin?

            I was not able to figure out how to do this statically. That said, I was able to print the addresses of the init functions at runtime by adding printk()s to do_initcall_level in init/main.c. The addresses printed can then be compared to the output of objdump on vmlinux (see my question for the incantation).

            A really useful and in-depth description of the initcall process can be found here.

            Note that you can also turn on initcall_debug, which will print each function name. In my case I wanted raw addresses which is why I chose the printk() method.

            1. What mechanisms would affect inclusion or exclusion of a given symbol at build time?

            Most of this boils down to your .config. The vast majority of inclusion / exclusion is done via the preprocessor. Other useful items are the linker script common header at include/asm-generic/vmlinux.lds.h and the platform linker script at for your device arch//*/*.lds.

            1. Which pieces of the kernel build and runtime are affected by initramfs size?

            No idea on this one, still.

            1. Are there any other tools / techniques / tribal wisdom which can help debug this situation?

            Don't panic

            Source https://stackoverflow.com/questions/66166820

            QUESTION

            How to apply git fetch through netrc.gpg file to crontab
            Asked 2021-Feb-03 at 05:13

            i am currently planning to register and utilize the git repository in redmine.

            Because redmine is not managed through remote url, there was a problem that you had to git clone it and leave the fetch periodically.

            It could have been handled simply through the git credential store, but I decided there was a security problem, so I encrypted the netrc file with the netrc.gpg file and then made the git-credential-netrc file fetch through git.credential = netrc -v.

            These tasks were written after seeing the reference materials below.

            1. is-there-a-way-to-cache-github-credentials-for-pushing-commits

            2. whats-the-best-encrypted-git-credential-helper-for-linux

            In particular, I referred to the reference number 1, and I also checked that the shell script works normally when it is turned locally after making the shell script as below.

            • update-git-repo.sh
            ...

            ANSWER

            Answered 2021-Feb-03 at 05:03

            It was a very simple problem. I changed the git global credential option as below and it was solved.

            Source https://stackoverflow.com/questions/66021395

            QUESTION

            Redmine email configuration using Exchange online
            Asked 2021-Feb-01 at 06:22

            I keep getting this error when trying to send test email in Redmine

            ...

            ANSWER

            Answered 2021-Feb-01 at 06:22

            Your Redmine email settings are good.

            However, it appears that you are trying to send Test email to non-existing Test domain.

            Office 365 is actually using Microsoft Exchange servers, and thus, all of RFC 2606 domain addresses will be blocked.

            The only way is change you test user (admin or other) email's domain name from "example.com", "example.net","example.org", "contoso.com", "domain.com" or "yourcompany.com" to some other domain name which aren't a RFC 2606 domain address.

            Source https://stackoverflow.com/questions/65983980

            QUESTION

            Specify environment variables for bundle exec
            Asked 2021-Jan-28 at 12:50

            I have seen two different ways to specify environment variables when execute bundle exec. Which one is correct on Linux? Maybe both? I am looking for general answer, I know that in this particular case (updating Redmine) specifying RAILS_ENV may be even unnecessary.

            ...

            ANSWER

            Answered 2021-Jan-28 at 12:50

            Both options are possible to define environment variables for rake tasks. However, for other executables (such as the rails executable), only the variant to define the variables before the executable is supported.

            What is happening here is that when you specify the environment variables at the start, your shell (bash, zsh, ...) set those environment variables for the newly started process. This can be done for any process. processes also inherit the environment variables defined earlier in the shell. A third option could thus be to run this in your shell:

            Source https://stackoverflow.com/questions/65915090

            QUESTION

            Migration failed on upgrade Bitnami Redmine
            Asked 2021-Jan-18 at 12:41

            I did upgrade my Redmine (version 4.1.0) to last version (4.1.1.7) through THIS instruction. All was ok until i wanted to migrate database. Once i entered sudo ruby bin/rake db:migrate RAILS_ENV=production' command the following error occured :

            Activating bundler (~> 2.1)
            Could not find 'bundler' (~> 2.1) among 5 total gem(s)
            To install the version of bundler this project requires, run gem install bundler -v '~> 2.1'

            Then i try gem install bundler -v '~> 2.1' :

            Fetching: bundler-2.2.5.gem (100%)
            Successfully installed bundler-2.2.5
            Parsing documentation for bundler-2.2.5
            Installing ri documentation for bundler-2.2.5
            Done installing documentation for bundler after 46 seconds
            Done installing documentation for bundler after 46 seconds

            and ran sudo ruby bin/rake db:migrate RAILS_ENV=production again but same error occured.

            My platform is Centos 7

            Thanks

            ...

            ANSWER

            Answered 2021-Jan-14 at 11:53

            Bitnami Engineer here.

            Please remember to load the Bitnami Environment before running any command in the installation. This way, you will ensure that you use the correct binaries when performing the operations.

            You can run these commands to load the Bitnami Environment

            Source https://stackoverflow.com/questions/65699856

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            In Redmine before 3.2.6 and 3.3.x before 3.3.3, Redmine.pm lacks a check for whether the Repository module is enabled in a project's settings, which might allow remote attackers to obtain sensitive differences information or possibly have unspecified other impact.
            Redmine before 3.2.9, 3.3.x before 3.3.6, and 3.4.x before 3.4.4 does not block the --config and --debugger flags to the Mercurial hg program, which allows remote attackers to execute arbitrary commands (through the Mercurial adapter) via vectors involving a branch whose name begins with a --config= or --debugger= substring, a related issue to CVE-2017-17536.

            Install redmine

            You can download it from GitHub.
            On a UNIX-like operating system, using your system’s package manager is easiest. However, the packaged Ruby version may not be the newest one. There is also an installer for Windows. Managers help you to switch between multiple Ruby versions on your system. Installers can be used to install a specific or multiple Ruby versions. Please refer ruby-lang.org for more information.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/redmine/redmine.git

          • CLI

            gh repo clone redmine/redmine

          • sshUrl

            git@github.com:redmine/redmine.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link

            Explore Related Topics

            Consider Popular Ruby Libraries

            rails

            by rails

            jekyll

            by jekyll

            discourse

            by discourse

            fastlane

            by fastlane

            huginn

            by huginn

            Try Top Libraries by redmine

            redmine-old

            by redmineRuby