Admin or maybe developer needs to run this command on each VOB where artifact is stored
(in context of desired VOB)
(not 100% sure about the -supertype, "binary_file" might be better)
(not 100% sure about the -mergetype, "copy" might be better!)
(you can always change this later via -replace option)
cleartool mkeltype -nc -supertype text_file -manager z_whole_copy -mergetype auto text_file_minified
This can be used to correct files that failed trying to checkin.
They have probably been created with a type of "text_file"
individual lines of text_file types cannot exceed 8000 characters.
cleartool chtype -nc -force text_file_minified jquery-1.8.2.min.js
PUT this file on your desktop/dev machine where you checkin.
Remove any leading spaces.
# AAA.magic
# This needs to copied to all developer desktops
# copy it next to default.magic (or cc.magic)
# under ...\ClearCase\config\magic
# Leave these from the default.magic just in case
# files are processed in alphabetic order, hence the AAA prefix
# Check stat type
directory : -stat d ;
block_device : -stat b ;
char_device : -stat c ;
socket : -stat s ;
fifo : -stat f ;
# minified javascript and CSS
# some of these violate the 8000 character per line limit
# of clearcase text tools/type managers
# *.min.js
text_file_minified : -name "*.[mM][iI][nN].[jJ][sS]" ;
# *.min.css
text_file_minified : -name "*.[mM][iI][nN].[cS][sS][sS]" ;