Skip to content
Snippets Groups Projects
Select Git revision
  • c977c732f2753b710e6e9d2446a03ccc49eeb6dd
  • master default protected
  • stable/20250718.0
  • nightly/20250718.0
  • nightly/20250714.0
  • beta/202507141552
  • beta/202506161038
  • stable/20250613.0
  • nightly/20250613.0
  • beta/202506101658
  • stable/20250610.0
  • nightly/20250610.0
  • beta/202506091027
  • beta/202506061543
  • nightly/20250605.0
  • beta/202506051039
  • beta/202506051002
  • beta/202506041611
  • beta/202506041335
  • beta/202505231812
  • stable/20250523.0
  • nightly/20250523.0
22 results

src

  • Open with
  • Download source code
  • Download directory
  • Your workspaces

      A workspace is a virtual sandbox environment for your code in GitLab.

      No agents available to create workspaces. Please consult Workspaces documentation for troubleshooting.

  • Maxim Cournoyer's avatar
    Maxim Cournoyer authored and Maxim Cournoyer committed
    Automated using the following commands:
    
      $ mv src/{dring,jami}
      $ git grep -l src/dring | xargs sed -i 's,src/dring,src/jami,g'
      $ git grep -l '#include "dring/' | \
        xargs sed -i 's,#include "dring/,#include "jami/,g'
      $ git grep -l 'dring.h' | xargs sed -i 's,dring.h,jami.h,g'
    
    And finally,
    
      $ git grep -l 'dring' | xargs sed -i 's,dring,jami,g'
    
      $ files=$(find -name '*dring*' | sort)
      $ for f in $files; do mkdir -p "$(dirname "$f")"; \
          mv "$f" "$(echo $f | sed 's/dring/jami/g')"; done
    
    To resolve a bad renaming favorably:
    
      $ git grep -l -i AlsaCarjami | \
        xargs sed -i -E 's/([Aa])lsaCarjami/\1lsaCardRingtone/g'
    
    The above renaming command is not perfect, so some hand-tuning was
    required to complete it.
    
    * src/manager.cpp (Manager::ManagerPimpl::retrieveConfigPath):
    Preserve the dring.yml configuration file name, until we add something
    to migrate (rename) it to jami.yml.
    * man/dring.pod: Delete.
    * bin/dbus/jamid.pod: Move to ...
    * man/jamid.pod: here.
    * bin/dbus/meson.build (jamid_targets): Normalize man section to the
    pre-existing 1 and adjust accordingly.
    * src/jami/def.h (dring_EXPORTS): Rename to ...
    (jami_EXPORTS): ... this.
    
    change-Id: I9828be6da9c711ab2f22c4d1b9539fea89d7b6fb
    ba3a411c
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Name Last commit Last update
    ..