/download_full_zip_action
create a Zip file containing the whole layout

Sourcecode in Layout/actions.js:
1:   function download_full_zip_action() {
2:      try {
3:         var data = this.evalDownload(true);
4:         res.contentType = "application/zip";
5:         res.writeBinary(data);
6:      } catch (err) {
7:         res.message = new Exception("layoutDownload");
8:         res.redirect(this.href());
9:      }
10:     return;
11:  }