Page 1 of 1

XATAFACE minimalistic

PostPosted: Sat Sep 29, 2012 3:00 am
by zmmaj
does exist, or what is minimal list of files, who I need to upload to host in order to my app (site) work?
Xataface have 78Mb without all modules ( included only 4)... that is too large...

tnx...

Re: XATAFACE minimalistic

PostPosted: Sat Sep 29, 2012 3:17 am
by Cabeza
My (the only addition I have is the grid module) Xataface 1.3.2 directory shows 18.2MB.
The original xataface-1.3.2.tar.gz is only 2.7MB.
It looks as if something else is included in your count...
Hope it helps.

Re: XATAFACE minimalistic

PostPosted: Sat Sep 29, 2012 5:16 am
by zmmaj
well I was download yesterday xataface version 1.9...
without ANY module unziped I have there 67 Mb... I was added 7 modules and I get more 11 Mb what is in sum 78 Mb:(
The bigest file there is folder "doc_output" with whole 46 mb... Do I really need this folder?
That is why i ask for minimal list of files ....
Eg without documentation, examples, uselles pictures, etc...

tnx

Re: XATAFACE minimalistic

PostPosted: Sat Sep 29, 2012 5:37 am
by shannah
Check out the build.xml file
http://weblite.ca/svn/dataface/core/trunk/build.xml

You may not be able to run this (never tested on another system), but you can see by the <deltree> directives which directories and files are deleted for the production release.

-Steve

Re: XATAFACE minimalistic

PostPosted: Sat Sep 29, 2012 5:40 am
by shannah
Also, the lib/FCKeditor and lib/TinyMCE directories can be deleted if you aren't using either of those editors. (i.e. the htmlarea widget). These both take up a quite a bit of space.

Re: XATAFACE minimalistic

PostPosted: Sat Sep 29, 2012 6:05 am
by zmmaj
Ok,... I was see linked XML file..
What about 'Doc' and 'doc_output' folders?
I found this there
Code: Select all
  <target name="prodn" depends="devel">
     <deltree dir="./doc"/>
     <deltree dir="./doc_output"/>


As I said I am bad for php, xml etc... Is this mean I can delete these folders?
that two folders contains
1,258 items, totalling 42.8 MB...
tnx a lot.

Re: XATAFACE minimalistic

PostPosted: Mon Oct 01, 2012 6:29 pm
by shannah
Yes. That means you can delete those. Any <deltree> or <delete> tags in the prodn task indicate that those files/folders are deleted for the production build.
If you want to know more about that file syntax, it is an ANT build file. You should be able to find lots of resources about ANT online.

-Steve