-
Notifications
You must be signed in to change notification settings - Fork 54
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
How to implement #213 #262
Comments
@pinaf check this: http://www.yegor256.com/2014/11/24/principles-of-bug-tracking.html#5.-report-when-it-is-broken When you report a bug you should say what is broken now. I think in this case a README file is broken since it doesn't explain how our service provides FTP. Right? |
@yegor256 Well I'm asking for more information on how to implement a feature that doesn't exist yet. Is that considered a bug? I don't see why the README file should carry this type of information. Maybe this file http://maven.s3auth.com/architecture.html ? |
@pinaf maybe this file, but it has to be a bug. Everything you submit to a project should be formatted as a bug. By submitting a bug you disturb the project and by fixing it we're getting the project back to a stable state. This section of the article should explain better: http://www.yegor256.com/2014/04/12/puzzle-driven-development-by-roles.html#fix-and-break So, every time you need information - find out who fails to provide it to you at the moment. And complain about him (javadoc, readme, html, etc) |
@yegor256 Ok so I should be doing a little bit of breaking here - that is what I'm trying to do. From the article it seems to me the project manager would be responsible for |
@pinaf I don't think so. In this case, you are starting to implement a new feature. There is no help for you here from the management side. You're in the position of an architect/designer here. See http://www.yegor256.com/2014/04/12/puzzle-driven-development-by-roles.html#architect Your complaints/bugs should be addressed to the existing design documentation. |
@yegor256 Hmmm.. and the complaints should be addressed in the form of puzzles I suppose? |
@pinaf if you have no idea where to start, it's a bug (a new ticket). If you know how to create a high level design but don't know what to do next, it's a pull request with puzzles inside. |
@yegor256 I think I got it. Let me digest it a bit more :) thanks! |
Issue #213 requests an FTP frontend for downloading files, analogous to the current HTTP frontend. Implementation would be based on creating a new class,
FTPFacade
, analogous to the existingHTTPFacade
.However, the following items are not clear in the request for the new functionality:
HTTPFacade
does)?The text was updated successfully, but these errors were encountered: