cr.openjdk.org Server
The cr.openjdk.org server provides storage and display of materials and artifacts related to the OpenJDK Community. Anyone with an OpenJDK user name can publish materials on the cr.openjdk.org server. Users can upload files to temporary storage using secure methods (rsync, scp, and sftp).
Terms and conditions
This site is for open source materials related to the OpenJDK Community only. Users uploading inappropriate materials will lose access and the material will be deleted. Please review the Terms of Use.
Special note to developers working on closed artifacts: This cr.openjdk.org server is intended for OpenJDK materials only. Please use an alterative process.
Example
-
A developer called “username” transfers a local tree named "duke" to their home directory on cr.openjdk.org using scp or rsync:
scp -r duke username@cr.openjdk.org:
or
rsync -av duke username@cr.openjdk.org:
Note the final : on the command line. If you omit that, you will copy the bits into a directory called “username@cr.openjdk.org” on your local system.
-
The results will be published at:
https://cr.openjdk.org/~username/duke
-
Later on, if it is time to clean up, use sftp to access your code review directory:
sftp username@cr.openjdk.org
Use the
rm
command to delete individual files. If you want to delete a tree of files and directories, use therename
command to move them into your ~/.trash subdirectory. To continue with the example for "duke":rename duke .trash/duke
A cron job on the cr.openjdk.org server will periodically empty the trash for all users.
Please send feedback to
web-discuss at openjdk dot org
.