summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeLines
* Hide public communty.HEADv2.1.0ecs6Heiko Bernlöhr2023-02-15-2/+16
| | | | | If allow_anonymous is not set in ecs_config.yml then the public community will be hidden.
* Change cookie session name.Heiko Bernlöhr2023-02-15-1/+1
|
* Ruby 2.7.7Heiko Bernlöhr2023-02-15-3/+3
|
* Hide sys|ecs participant.Heiko Bernlöhr2023-02-15-7/+13
| | | | | | sys|ecs participant will be hidden in normal participants index view. Using sys=true as query string on participants index view will be showing it again.
* Update gitignoreHeiko Bernlöhr2022-09-29-1/+7
|
* Fix sqlite3 regressionv2.0.1Heiko Bernlöhr2022-09-23-65/+54
| | | | | | Rebuilding schema file now (new rails version) discards "id: :serial" in create_table statement. Otherwise sqlite3 failed when seeding data with an "not null" exception for "id" (primary key).
* Change version string.Heiko Bernlöhr2022-09-15-1/+1
|
* Fix sqlite3 dependency.Heiko Bernlöhr2022-09-15-8/+9
| | | | Further update GEMS.
* Rails 6.1.4.7 and ruby 2.7.6Heiko Bernlöhr2022-09-15-88/+96
|
* Fix message controller test.Heiko Bernlöhr2022-09-15-14/+10
|
* Fix deprecated update_attributes method.v2.0.0Heiko Bernlöhr2022-09-15-5/+5
|
* Rails serve static files under /publicHeiko Bernlöhr2022-09-15-1/+1
|
* Rails 6.1.4.4Heiko Bernlöhr2022-09-15-156/+226
|
* WIP: Rails 6Heiko Bernlöhr2022-09-15-159/+258
| | | | | Change ECS user to ECS6 and databases to cc6<prod|test|dev> Initial Rails 6 update.
* Ruby 2.7.5Heiko Bernlöhr2022-09-15-3/+3
|
* Rails 5.2.6Heiko Bernlöhr2022-09-15-220/+319
|
* WIP: Rails 5Heiko Bernlöhr2022-09-15-345/+521
|
* Add debugger.Heiko Bernlöhr2022-09-15-2/+4
|
* Removed doubled uniq method call.Heiko Bernloehr2022-09-15-1/+1
|
* Update all gems.v1.2.5ecs4Heiko Bernlöhr2022-09-15-21/+20
|
* Add logging for http Location header.Heiko Bernlöhr2020-09-10-0/+1
|
* Add version string to menu line.Heiko Bernlöhr2020-09-10-1/+9
| | | | | To mark a new version write the version string into the file "version" in rails root directory. Then commit a "bump version".
* Upgrade to Rails 4.2.11.3Heiko Bernloehr2020-06-10-67/+70
|
* Change ruby version to 2.4.10Heiko Bernloehr2020-06-10-4/+3
|
* Rework of Limit participants view of receiver-/sender messages and events.Heiko Bernloehr2020-06-10-42/+78
| | | | | The old implementation consumes too much memory because of reading all messages into an array.
* Limit participants view of receiver-/sender messages and events.Heiko Bernloehr2019-10-16-9/+48
|
* Change production log level to :infoHeiko Bernloehr2019-10-16-29/+1
|
* Fix sqlite3 ambiguous column name.Felix Pahlow2019-10-16-2/+2
| | | | This error only affected ECS running sqlite3 databases.
* Change ruby version to 2.3.8Heiko Bernloehr2019-10-16-2/+6
|
* Fix ttl garbage collection time compare.Heiko Bernloehr2018-08-09-2/+2
|
* Change root URL behaviour.Heiko Bernloehr2018-08-07-1/+1
| | | | | | Now you're redirected to "/admin/participants" when calling root URL of ECS instead of just rooted internal to "/admin/participants". It's better for resource protection configuration at the reverse proxy.
* Delete anonymous link when its count is zero.Heiko Bernloehr2018-03-29-4/+5
|
* Fix overlapping forms in edit view of participants.Heiko Bernloehr2018-03-29-1/+1
| | | | This only occured in firefox.
* Move database adapters in Gemfile to individual groups.Heiko Bernloehr2018-03-21-2/+2
|
* Turn off initialization on precompiling assets.Heiko Bernloehr2018-03-20-0/+1
|
* Add garbage collecting tasks.Heiko Bernloehr2018-03-20-5/+101
| | | | | | | New environment variables: ECS_PARTICIPANTS_TTL_SUB: Number of days created before garbage collected ECS_PARTICIPANTS_TTL_ANONYMOUS: Number of days created before garbage collected
* Bugfix initializing config data.Heiko Bernloehr2018-02-28-3/+3
| | | | | Defined? expression evaluated to always true. This was harmless because all configuration parameters should be defined in ecs_config.yml .
* Add GPL.Heiko Bernloehr2018-02-28-0/+17
|
* Solve deprecation warning in test case.Heiko Bernloehr2018-02-28-3/+3
|
* Add index migrations.Heiko Bernloehr2018-02-28-1/+17
| | | | Enhance performance.
* Upgrade to Rails 4.2.10Heiko Bernloehr2018-02-28-118/+164
|
* Remove observers.Heiko Bernloehr2018-02-28-16/+0
| | | | | | | | | | | | When using observers there is always an error only in production mode: vendor/bundle/ruby/2.3.0/gems/rails-observers-0.1.5/lib/rails/observers/action_controller/caching/sweeper.rb:3:in `<module:Caching>': uninitialized constant ActiveRecord::Observer (NameError) Running ECS on SLES12 with a mysql database works fine. Probably it's the fault of the pg adapter. The newest version is 1.0, but for that you need Rails 5.1.x. So we have to investigate when upgrading to Rails 5. See also: https://github.com/rails/rails/pull/31671
* Content-Length header via Rails middleware.Heiko Bernloehr2018-01-18-0/+35
| | | | | The Content-Length rack module provided through ruby 2.1 doesn't work correctly with Rails 4.1. So we provide our own.
* Revert "Add Content-Length header."Heiko Bernloehr2018-01-18-2/+0
| | | | This reverts commit a034902e9bed99328e0209665a97e78250b459e8.
* Add Content-Length header.Heiko Bernlöhr2018-01-12-0/+2
| | | | | | Normally this should happen in Rack::ContentLength (rack-<version>/lib/rack/content_length.rb). But of course could also be done in an application controller.
* Add rails-observer gem.Heiko Bernlöhr2018-01-12-0/+4
|
* Update stubs.Heiko Bernlöhr2018-01-12-15/+14
|
* Add unicorn gem.Heiko Bernlöhr2018-01-12-26/+39
|
* Delete unused controller.Heiko Bernlöhr2018-01-12-34/+0
|
* Change configuration to sqlite database.Heiko Bernlöhr2018-01-12-49/+46
|