Skip to content

Dev Notes

cwc edited this page Jul 28, 2012 · 3 revisions
  • The master branch is considered write-once; its commits are sacred, and the history will never be rewritten unless absolutely necessary. The dev branch will be volatile; although it will be the first to receive new commits (which will then be rebased onto master), its commits may be rebased/amended at any time.

  • The current nodebooru ORM model uses Image to represent any uploaded file. Until the model is changed, generated Nativ code will therefore use the term Image as well. In anticipation of an eventual model change, DroidBooru convention will be to use the term File instead. For example, a method that queries nodebooru's Image table would be called queryFiles, not queryImages. Exception: Since files generally have some sort of thumbnail, it's likely that using the term Image in that context will make more sense, e.g. a displayImage method might be so named because it displays a file's thumbnail.

Clone this wiki locally