Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove stashcache #2

Merged
merged 2 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/typed.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function TypedArea() {
useEffect(() => {
const options = {
strings: [
`<span class='text-green-600'>$</span> <span class='text-blue-600'>stashcp</span> /osgconnect/public/dweitzel/blast/queries/query1 ./<br/>
`<span class='text-green-600'>$</span> <span class='text-blue-600'>pelican object get</span> pelican://osg-htc.org/public/data ./<br/>
query1 done!`,
],
typeSpeed: 20,
Expand Down
14 changes: 7 additions & 7 deletions pages/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ export default function StashCP() {
<div>
<h1 className='md:text-6xl text-2xl font-extrabold mb-4 text-white'>OSDF Client</h1>
<p className='mt-5 sm:mt-10 lg:w-10/12 text-gray-400 font-normal text-lg sm:text-lg">'>
StashCP is the client tool to download or upload files on the Open Science Data Federation.
Pelican is the client tool to download or upload files on the Open Science Data Federation.
</p>
<div className=''>
<button onClick={() => window.location = "https://github.com/htcondor/osdf-client/releases"} className='button bg-green-600 hover:bg-green-700 text-white text-lg font-bold py-2 px-4 rounded-lg mt-5 shadow'>
<button onClick={() => window.location = "https://docs.pelicanplatform.org/install"} className='button bg-green-600 hover:bg-green-700 text-white text-lg font-bold py-2 px-4 rounded-lg mt-5 shadow'>
<div className='flex flex-row items-center'>
<div className='flex flex-col items-start'>
<span>Download StashCP for your platform</span>
<span>Download Pelican for your platform</span>
<span className='text-sm opacity-90 font-normal'>rpm, deb, exe, static binary</span>
</div>
<div>
Expand All @@ -36,7 +36,7 @@ export default function StashCP() {
</div>
</button>
<br />
<button onClick={() => window.location = "https://github.com/htcondor/osdf-client"} className='button bg-blue-600 hover:bg-blue-700 text-white text-lg font-bold py-2 px-4 rounded-lg mt-5 shadow'>
<button onClick={() => window.location = "https://github.com/PelicanPlatform/pelican"} className='button bg-blue-600 hover:bg-blue-700 text-white text-lg font-bold py-2 px-4 rounded-lg mt-5 shadow'>
<div className='flex flex-row items-center'>
<div className='flex flex-col items-start'>
<span>View the Source</span>
Expand All @@ -59,17 +59,17 @@ export default function StashCP() {
<div className='container flex-none md:flex md:flex-row justify-center items-stretch mx-auto py-5'>
<FeatureIcon icon={<ExclamationIcon className='h-7 w-7 text-lime-400 mr-1 my-1' />}
title='Failure is expected!'>
<p>StashCP expects failure. It retries connections, attempts to download from multiple caches, and downloads through different methods.</p>
<p>Pelican expects failure. It retries connections, attempts to download from multiple caches, and downloads through different methods.</p>

</FeatureIcon>
<FeatureIcon icon={<DesktopComputerIcon className='h-7 w-7 text-lime-400 mr-1 my-1' />}
title='Many supported platforms'>
<p>StashCP is compiled for many platforms and packaging managers. It supports Linux, Mac, Windows OS. It also has packages for Debian, RPMs, and Alpine.</p>
<p>Pelican is compiled for many platforms and packaging managers. It supports Linux, Mac, Windows OS. It also has packages for Debian, RPMs, and Alpine.</p>
</FeatureIcon>

<FeatureIcon icon={<BriefcaseIcon className='h-7 w-7 text-lime-400 mr-1 my-1' />}
title='Portable'>
<p>StashCP is statically compiled binary. The same executable can run on multiple version of Linux.</p>
<p>Pelican is a statically compiled binary. The same executable can run on multiple version of Linux.</p>
</FeatureIcon>

</div>
Expand Down
2 changes: 1 addition & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function Home({ usageData }) {
</FeatureIcon>
<FeatureIcon icon={<CogIcon className='h-7 w-7 text-lime-400 mr-1 my-1' />}
title='Client Tools availble on the OSG'>
<p>Client tools such as <Link href="/client" className='text-blue-300 hover:text-blue-500'>StashCP</Link> and CVMFS available for every operating system.</p>
<p>Client tools such as <Link href="https://docs.pelicanplatform.org/" className='text-blue-300 hover:text-blue-500'>Pelican</Link> and CVMFS available for every operating system.</p>
</FeatureIcon>

<FeatureIcon icon={<GlobeIcon className='h-7 w-7 text-lime-400 mr-1 my-1' />}
Expand Down
Loading