Although this is not a Perl solution, I'm willing to bet that there are Perl interfaces to it. It sounds like possibly you want version control software, such as CVS or Subversion. I'm reasonably new to version control software, but I must say, it is very nice. It sounds like you may not need to take advantage of the versioning if nobody needs to change the files (but maybe you'll find a use for it).

I've been using Subversion, so that is what I'll explain it with, but CVS is very similar.

Basically, you can put a directory or files under version control, at which point they are uploaded into the repository (and yes, they do call it a respository, which is why your question made me think of it). You can allow access to the repository through SSH or through HTTP, and you can use the normal SSH or HTTP restrictions on read/write permissions, authenticaction, and domain restrictions. The people or programs that you want to be able to get these files would request the appropriate files. This could be done in preset groups by using directories (as in, they could request a whole directory to get the files in it), or they could request any subset of them that they want.

Anyway, that's just a quick suggestion. It sounds like it may be what you're looking for, or it may not be. I hope it is helpful, though.

~Fatty


In reply to Re: Generic repository of files by Anonymous Monk
in thread Generic repository of files by Tanktalus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.