Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • test/maria-db
  • 196-feature-request-ability-to-export-and-move-a-group-to-a-second-crabgrass-instance
  • 243-unable-to-vote-on-more-than-one-item
  • 244-remove-user-request-not-possible
  • 241-no-method-error-showings-for-asset-page
  • 236-starring-watching-and-making-public-without-javascript
  • 232-eco-cleanup-task-for-page-terms-without-pages-2
  • 227-possibles-for-a-poll-are-not-scoped-per-poll-in-terms-of-position
  • 167-fix-production-except-tags
  • 197-rails-5-0-upgrade
  • 214-strange-behaviour-when-javascript-turned-off
  • 219-error-during-thumbnail-generation
  • 215-access-rights-to-pages-after-group-destruction
  • 198-update-actsastaggableon
  • 167-utf-8-emoticons-break-wikis-and-posts
  • refactor/advanced-fixtures
  • test/docker
  • 19-email-notifications-are-broken
  • 153-tracking-wrong-counts-of-all-time-views
  • 0.6.3
  • 0.6.2
  • 0.6.1
  • 0.6.0
  • 0.6.0-beta
25 results

INSTALL.md

Blame
  • Forked from Liberate / crabgrass
    Source project has a limited visibility.
    • dgt's avatar
      d456c4ef
      Switch to full unicode (utf8mb4) to display emojis · d456c4ef
      dgt authored
      switch to utf8mb4 which can store all unicode code points including
      emoticons (utf8 which we used before is an alias for utf8mb3 which only
      stores a maximum of three bytes).
      
      the rake task cg:convert_to_unicode converts the database into utf8mb4.
      it also sets a binary collation for our tags table, because we
      want to distinguish between olé and ole. there is no test for this
      feature (because it would fail).
      the schema_migrations table has to be excluded, because it has
      indexes which are to long
      
      the emoji tests work without database conversion, because database
      connection uses utf8mb4.
      d456c4ef
      History
      Switch to full unicode (utf8mb4) to display emojis
      dgt authored
      switch to utf8mb4 which can store all unicode code points including
      emoticons (utf8 which we used before is an alias for utf8mb3 which only
      stores a maximum of three bytes).
      
      the rake task cg:convert_to_unicode converts the database into utf8mb4.
      it also sets a binary collation for our tags table, because we
      want to distinguish between olé and ole. there is no test for this
      feature (because it would fail).
      the schema_migrations table has to be excluded, because it has
      indexes which are to long
      
      the emoji tests work without database conversion, because database
      connection uses utf8mb4.