Skip to content
Snippets Groups Projects
Select Git revision
  • ea0b281ab6c64093d2e03a729d7f25b72552db5d
  • annotation-on-video default protected
  • demo_ci
  • 3-upstream-01022023
  • master
  • gh3538-captions
  • 16-adapt-for-images-annot
  • 15-api-for-annotations-on-video
  • 15-annotations-on-videos
  • video_for_annotations
  • wip-1-annotations-on-videos
  • 9-videoviewer-tests
  • 9_wip_videotests
  • 6-fix-tests-and-ci
  • _fix_ci
  • wip-webpack-from-git
16 results

WorkspaceAddButton.js

Blame
    • Dickson Law's avatar
      ea0b281a
      Fix round error · ea0b281a
      Dickson Law authored
      Replaced the lines responsible for this error:
      ```
      Warning: Failed prop type: Material-UI: variant="round" was renamed variant="circular" for consistency.
      ```
      ea0b281a
      History
      Fix round error
      Dickson Law authored
      Replaced the lines responsible for this error:
      ```
      Warning: Failed prop type: Material-UI: variant="round" was renamed variant="circular" for consistency.
      ```
    create_mass_primtux_users.sh 546 B
    #!/bin/bash
    DIR=`dirname $0`
    
    usage(){
        echo "Usage $0 names.txt"
        echo "Reads a list of name corresponding to some ldap users"
        echo "and run $DIR/create_primtux_user.sh on each of them"
    }
    
    if [ -z "$1" ]
    then
        usage
        exit 1
    fi
    
    if [ ! -f "$1" ]
    then
        echo "$1 is not a file"
        usage
        exit 1
    fi
    
    while read first last level
    do
        echo $first
        echo $last
        echo $level
        uid=`ldapsearch -x cn="$first $last" | grep "^uid:" | cut -f ' ' -d 2`
        echo $uid
        echo $DIR/create_primtux_user.sh $uid $level
    done < $1