Re: [web2py] Re: web2py apps & github

2019-01-16 Thread Dave S


On Wednesday, January 16, 2019 at 4:21:10 PM UTC-8, 黄祥 wrote:
>
> agree, learn from several web2py app on github some of them didn't include 
> the private folders
> btw github now offering private repo for free, so if you want to keep it 
> on just set it in the private repo
>
> best regards
> stifan
>

But the template method helps ensure that .. even if you are the only 
accessor of the repo .. that you don't set up System Z with System Y's 
settings.

/dps
 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-16 Thread Eliezer (Vlad) Tseytkin
Thank you!

On Wed, Jan 16, 2019, 6:46 PM Dave S 
>
> On Wednesday, January 16, 2019 at 3:10:22 PM UTC-8, Vlad wrote:
>>
>> Dave,
>> you mentioned "Sanitize private/appconfig.ini" - could you please comment
>> on it -
>> I am not sure how this file is used by web2py, but seems that it may have
>> some private info (though has some generics for me now).
>> Should I just exclude it from git? Is it getting recreated by w2p or...
>> What did you mean by "sanitize" in this case?
>>
>>
> Put a placeholder for system-specific  information, especially paths/urls
> and passwords ... appconfig.ini often has those specified for the DAL
> connectors.  What should be in github (or other repos) is a *template*,
> and best to call it a name that relates to appconfig.ini but makes clear
> its role; something like appcfg_template.ini.  By changing the name, you
> make sure that System Y's appconfig.ini isn't published to github by an
> automatic accident.  [This is the general advice for archiving .ini and .rc
> files of all types.]
>
> The distribution does this with the mailer settings, and having an sqlite
> uri in the template isn't too risky, since that usually needs local
> access.  But for a Foxglove DB running on a remote server, you'd fill in
> the template with something like:
>
> uri= fxgl:///ADMINNAME:ADPWD@myremotedigitalisserver
>
> and then on installation, copy the template to appconfig.ini and open it
> in an editor to fill in the actual values.
>
> /dps
>
>
> On Monday, January 7, 2019 at 7:21:55 PM UTC-5, Dave S wrote:
>>>
>>>
>>>
>>> On Sunday, January 6, 2019 at 12:45:27 PM UTC-8, Vlad wrote:

 Oh, I didn't express myself precisely: I am asking about Github - I am
 setting up a Github repository and wondering what exactly from the app
 directory should go in there - without extra files and without missing
 files  - to preserve complete app/set


>>> You don't want the sessions or errors folders (they'll get recreated by
>>> web2py if missing, and should be cleaned out from time to time anyway).
>>> You may choose to also skip the databases folder, as the table files are
>>> recreated from the models.  IIRC, you're using an external database server
>>> rather than sqlite3, so you have other ways of backing up the data (I
>>> wouldn't backup sqlite3 to github, either).  If you have uploads, you
>>> should probably back them up separately, as well.
>>>
>>> You should have all .py files, from your myapp toplevel as well as
>>> controllers, models, modules, and scripts, and then your files from static
>>> and views, and languages if you've updated that.  Sanitize
>>> private/appconfig.ini and save is as private/sample-appconfig.ini (keep an
>>> indication of how to reach your db).
>>>
>>> /dps
>>>
>>>
>>>
 On Sun, Jan 6, 2019 at 2:51 PM 黄祥  wrote:

> for pack or unpack thing it's use tar
> ref:
> https://groups.google.com/d/msg/web2py/khiGuJYxHpo/clEEU7n3VGEJ
>
> best regards,
> stifan
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google
> Groups "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to web2py+un...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
 --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-16 Thread 黄祥
agree, learn from several web2py app on github some of them didn't include 
the private folders
btw github now offering private repo for free, so if you want to keep it on 
just set it in the private repo

best regards
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-16 Thread Dave S


On Wednesday, January 16, 2019 at 3:10:22 PM UTC-8, Vlad wrote:
>
> Dave, 
> you mentioned "Sanitize private/appconfig.ini" - could you please comment 
> on it - 
> I am not sure how this file is used by web2py, but seems that it may have 
> some private info (though has some generics for me now). 
> Should I just exclude it from git? Is it getting recreated by w2p or... 
> What did you mean by "sanitize" in this case?
>
>
Put a placeholder for system-specific  information, especially paths/urls 
and passwords ... appconfig.ini often has those specified for the DAL 
connectors.  What should be in github (or other repos) is a *template*, and 
best to call it a name that relates to appconfig.ini but makes clear its 
role; something like appcfg_template.ini.  By changing the name, you make 
sure that System Y's appconfig.ini isn't published to github by an 
automatic accident.  [This is the general advice for archiving .ini and .rc 
files of all types.]

The distribution does this with the mailer settings, and having an sqlite 
uri in the template isn't too risky, since that usually needs local 
access.  But for a Foxglove DB running on a remote server, you'd fill in 
the template with something like:

uri= fxgl:///ADMINNAME:ADPWD@myremotedigitalisserver

and then on installation, copy the template to appconfig.ini and open it in 
an editor to fill in the actual values.

/dps


On Monday, January 7, 2019 at 7:21:55 PM UTC-5, Dave S wrote:
>>
>>
>>
>> On Sunday, January 6, 2019 at 12:45:27 PM UTC-8, Vlad wrote:
>>>
>>> Oh, I didn't express myself precisely: I am asking about Github - I am 
>>> setting up a Github repository and wondering what exactly from the app 
>>> directory should go in there - without extra files and without missing 
>>> files  - to preserve complete app/set
>>>
>>>
>> You don't want the sessions or errors folders (they'll get recreated by 
>> web2py if missing, and should be cleaned out from time to time anyway).  
>> You may choose to also skip the databases folder, as the table files are 
>> recreated from the models.  IIRC, you're using an external database server 
>> rather than sqlite3, so you have other ways of backing up the data (I 
>> wouldn't backup sqlite3 to github, either).  If you have uploads, you 
>> should probably back them up separately, as well.
>>
>> You should have all .py files, from your myapp toplevel as well as 
>> controllers, models, modules, and scripts, and then your files from static 
>> and views, and languages if you've updated that.  Sanitize 
>> private/appconfig.ini and save is as private/sample-appconfig.ini (keep an 
>> indication of how to reach your db).
>>
>> /dps
>>
>>  
>>
>>> On Sun, Jan 6, 2019 at 2:51 PM 黄祥  wrote:
>>>
 for pack or unpack thing it's use tar
 ref:
 https://groups.google.com/d/msg/web2py/khiGuJYxHpo/clEEU7n3VGEJ

 best regards,
 stifan

 -- 
 Resources:
 - http://web2py.com
 - http://web2py.com/book (Documentation)
 - http://github.com/web2py/web2py (Source code)
 - https://code.google.com/p/web2py/issues/list (Report Issues)
 --- 
 You received this message because you are subscribed to the Google 
 Groups "web2py-users" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to web2py+un...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

>>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-16 Thread Vlad
Dave, 
you mentioned "Sanitize private/appconfig.ini" - could you please comment 
on it - 
I am not sure how this file is used by web2py, but seems that it may have 
some private info (though has some generics for me now). 
Should I just exclude it from git? Is it getting recreated by w2p or... 
What did you mean by "sanitize" in this case?

On Monday, January 7, 2019 at 7:21:55 PM UTC-5, Dave S wrote:
>
>
>
> On Sunday, January 6, 2019 at 12:45:27 PM UTC-8, Vlad wrote:
>>
>> Oh, I didn't express myself precisely: I am asking about Github - I am 
>> setting up a Github repository and wondering what exactly from the app 
>> directory should go in there - without extra files and without missing 
>> files  - to preserve complete app/set
>>
>>
> You don't want the sessions or errors folders (they'll get recreated by 
> web2py if missing, and should be cleaned out from time to time anyway).  
> You may choose to also skip the databases folder, as the table files are 
> recreated from the models.  IIRC, you're using an external database server 
> rather than sqlite3, so you have other ways of backing up the data (I 
> wouldn't backup sqlite3 to github, either).  If you have uploads, you 
> should probably back them up separately, as well.
>
> You should have all .py files, from your myapp toplevel as well as 
> controllers, models, modules, and scripts, and then your files from static 
> and views, and languages if you've updated that.  Sanitize 
> private/appconfig.ini and save is as private/sample-appconfig.ini (keep an 
> indication of how to reach your db).
>
> /dps
>
>  
>
>> On Sun, Jan 6, 2019 at 2:51 PM 黄祥  wrote:
>>
>>> for pack or unpack thing it's use tar
>>> ref:
>>> https://groups.google.com/d/msg/web2py/khiGuJYxHpo/clEEU7n3VGEJ
>>>
>>> best regards,
>>> stifan
>>>
>>> -- 
>>> Resources:
>>> - http://web2py.com
>>> - http://web2py.com/book (Documentation)
>>> - http://github.com/web2py/web2py (Source code)
>>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "web2py-users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to web2py+un...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-15 Thread Dave S



On Sunday, January 13, 2019 at 6:33:14 AM UTC-8, Vlad wrote:
>
> Got it, 
> thank you very much.
> Learning git now - it's so messy and unstructured as far as learning curve 
> :) I guess once I get it, it becomes quick and easy... 
>
>
In my opinion, git is ugly, but then I went from rcs to scripts to cvs to 
svn to mercurial before hearing about git.

github helps, some.

/dps
 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-13 Thread Vlad
Got it, 
thank you very much.
Learning git now - it's so messy and unstructured as far as learning curve 
:) I guess once I get it, it becomes quick and easy... 

On Monday, January 7, 2019 at 7:21:55 PM UTC-5, Dave S wrote:
>
>
>
> On Sunday, January 6, 2019 at 12:45:27 PM UTC-8, Vlad wrote:
>>
>> Oh, I didn't express myself precisely: I am asking about Github - I am 
>> setting up a Github repository and wondering what exactly from the app 
>> directory should go in there - without extra files and without missing 
>> files  - to preserve complete app/set
>>
>>
> You don't want the sessions or errors folders (they'll get recreated by 
> web2py if missing, and should be cleaned out from time to time anyway).  
> You may choose to also skip the databases folder, as the table files are 
> recreated from the models.  IIRC, you're using an external database server 
> rather than sqlite3, so you have other ways of backing up the data (I 
> wouldn't backup sqlite3 to github, either).  If you have uploads, you 
> should probably back them up separately, as well.
>
> You should have all .py files, from your myapp toplevel as well as 
> controllers, models, modules, and scripts, and then your files from static 
> and views, and languages if you've updated that.  Sanitize 
> private/appconfig.ini and save is as private/sample-appconfig.ini (keep an 
> indication of how to reach your db).
>
> /dps
>
>  
>
>> On Sun, Jan 6, 2019 at 2:51 PM 黄祥  wrote:
>>
>>> for pack or unpack thing it's use tar
>>> ref:
>>> https://groups.google.com/d/msg/web2py/khiGuJYxHpo/clEEU7n3VGEJ
>>>
>>> best regards,
>>> stifan
>>>
>>> -- 
>>> Resources:
>>> - http://web2py.com
>>> - http://web2py.com/book (Documentation)
>>> - http://github.com/web2py/web2py (Source code)
>>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "web2py-users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to web2py+un...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-07 Thread Dave S


On Sunday, January 6, 2019 at 12:45:27 PM UTC-8, Vlad wrote:
>
> Oh, I didn't express myself precisely: I am asking about Github - I am 
> setting up a Github repository and wondering what exactly from the app 
> directory should go in there - without extra files and without missing 
> files  - to preserve complete app/set
>
>
You don't want the sessions or errors folders (they'll get recreated by 
web2py if missing, and should be cleaned out from time to time anyway).  
You may choose to also skip the databases folder, as the table files are 
recreated from the models.  IIRC, you're using an external database server 
rather than sqlite3, so you have other ways of backing up the data (I 
wouldn't backup sqlite3 to github, either).  If you have uploads, you 
should probably back them up separately, as well.

You should have all .py files, from your myapp toplevel as well as 
controllers, models, modules, and scripts, and then your files from static 
and views, and languages if you've updated that.  Sanitize 
private/appconfig.ini and save is as private/sample-appconfig.ini (keep an 
indication of how to reach your db).

/dps

 

> On Sun, Jan 6, 2019 at 2:51 PM 黄祥 > 
> wrote:
>
>> for pack or unpack thing it's use tar
>> ref:
>> https://groups.google.com/d/msg/web2py/khiGuJYxHpo/clEEU7n3VGEJ
>>
>> best regards,
>> stifan
>>
>> -- 
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/book (Documentation)
>> - http://github.com/web2py/web2py (Source code)
>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "web2py-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to web2py+un...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-06 Thread Eliezer (Vlad) Tseytkin
Got it,
Thank you

On Sun, Jan 6, 2019, 4:48 PM 黄祥  it depends on what you want to have version record of your files (better
> to put it all web2py apps on github)
> $ tree web2py/applications/web2pyapp
> web2py/applications/web2pyapp
> |-- ABOUT [if any]
> |-- LICENSE [if any]
> |-- __init__.py
> |-- controllers
> |-- cron [if any]
> |-- languages
> |-- models
> |-- modules
> |-- private
> |-- routes.py [if any]
> |-- static
> `-- views
>
> but for some case to testing web2py apps in the new version of web2py,
> usually put just the web2py apps core (non front end js or css framework
> (no static folder in web2py apps tree directory stored in github) )
>
> best regards,
> stifan
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-06 Thread 黄祥
it depends on what you want to have version record of your files (better to 
put it all web2py apps on github)
$ tree web2py/applications/web2pyapp
web2py/applications/web2pyapp
|-- ABOUT [if any]
|-- LICENSE [if any]
|-- __init__.py
|-- controllers
|-- cron [if any]
|-- languages
|-- models
|-- modules
|-- private
|-- routes.py [if any]
|-- static
`-- views

but for some case to testing web2py apps in the new version of web2py, 
usually put just the web2py apps core (non front end js or css framework 
(no static folder in web2py apps tree directory stored in github) )

best regards,
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py apps & github

2019-01-06 Thread Eliezer (Vlad) Tseytkin
Oh, I didn't express myself precisely: I am asking about Github - I am
setting up a Github repository and wondering what exactly from the app
directory should go in there - without extra files and without missing
files  - to preserve complete app/set

On Sun, Jan 6, 2019 at 2:51 PM 黄祥  wrote:

> for pack or unpack thing it's use tar
> ref:
> https://groups.google.com/d/msg/web2py/khiGuJYxHpo/clEEU7n3VGEJ
>
> best regards,
> stifan
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: web2py apps & github

2019-01-06 Thread 黄祥
for pack or unpack thing it's use tar
ref:
https://groups.google.com/d/msg/web2py/khiGuJYxHpo/clEEU7n3VGEJ

best regards,
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py on github

2012-01-07 Thread Bruce Wade
If anyone is interested I found assembla.com which allows unlimited
repositories, with unlimited members for both public and private projects.

On Thu, Dec 22, 2011 at 5:45 AM, Massimo Di Pierro 
massimo.dipie...@gmail.com wrote:

 No problem at all Daniel, I welcome the discussion. I am just saying
 do not get upset if I am slow on this side. ;-)

 On Dec 22, 12:59 am, Daniel Aguayo Catalán daniel.agu...@gmail.com
 wrote:
  Massimo Di Pierro wrote:
   I hate all changes related to this topic. This is because I have to
   learn a new system and do extra work to move stuff around. There was a
   lot of push for git and github so we did it.
 
   Please, let's not open this can of worms again. The costs of changing
   outweighs the benefits.
 
   Massimo
 
  He he, don't worry :). My apologies if this topic is still kind of
  sensible. I thought that bitbucket was more restrictive and the free
  private project hosting was a plus and killer feature over other
  services, at least for me (that sadly have not gitourious nor github).
  So I just wanna to know a comparison of bitbucket and github from your
  perspective to choose my personal repo, but now I can see that was
  nothing in particular.
 
  I know that github is the 'pop-choice' for project hosting these days
  and I have no problem with that (gitorious.org and bitbucket has fairly
  same workflow as github), so please don't considerate this as a kind of
  flame of DVCS hosting.
 
  Thanks to all for your answer.
  Best regards
  --
  Daniel




-- 
-- 
Regards,
Bruce Wade
http://ca.linkedin.com/in/brucelwade
http://www.wadecybertech.com
http://www.warplydesigned.com
http://www.fitnessfriendsfinder.com


[web2py] Re: web2py on github

2011-12-22 Thread Massimo Di Pierro
No problem at all Daniel, I welcome the discussion. I am just saying
do not get upset if I am slow on this side. ;-)

On Dec 22, 12:59 am, Daniel Aguayo Catalán daniel.agu...@gmail.com
wrote:
 Massimo Di Pierro wrote:
  I hate all changes related to this topic. This is because I have to
  learn a new system and do extra work to move stuff around. There was a
  lot of push for git and github so we did it.

  Please, let's not open this can of worms again. The costs of changing
  outweighs the benefits.

  Massimo

 He he, don't worry :). My apologies if this topic is still kind of
 sensible. I thought that bitbucket was more restrictive and the free
 private project hosting was a plus and killer feature over other
 services, at least for me (that sadly have not gitourious nor github).
 So I just wanna to know a comparison of bitbucket and github from your
 perspective to choose my personal repo, but now I can see that was
 nothing in particular.

 I know that github is the 'pop-choice' for project hosting these days
 and I have no problem with that (gitorious.org and bitbucket has fairly
 same workflow as github), so please don't considerate this as a kind of
 flame of DVCS hosting.

 Thanks to all for your answer.
 Best regards
 --
 Daniel


Re: [web2py] Re: web2py on github

2011-12-21 Thread Daniel Aguayo Catalán

mdipierro escribió:

I somebody wants to keep an official mirror there I have no
objection. I prefer to stick with mercurial on Google because
mercurial is 100% python.

On Apr 5, 1:53 am, elffikkelff...@gmail.com  wrote:

hi,

I use a few project stored on github, and I find it easier to navigate
source code or to get a trunk version.
What about moving web2py on github?
I'm sorry to bump this out (and/or could be kind of obvious), but why 
github and not bitbucket?


Re: [web2py] Re: web2py on github

2011-12-21 Thread Daniel Aguayo Catalán

Daniel Aguayo Catalán escribió:

mdipierro escribió:

I somebody wants to keep an official mirror there I have no
objection. I prefer to stick with mercurial on Google because
mercurial is 100% python.

On Apr 5, 1:53 am, elffikkelff...@gmail.com  wrote:

hi,

I use a few project stored on github, and I find it easier to navigate
source code or to get a trunk version.
What about moving web2py on github?
I'm sorry to bump this out (and/or could be kind of obvious), but why 
github and not bitbucket?


I'm new to bitbucket but I see that it also supports git, so... it's the 
github interface the killer feature? the 5 users cap for free accounts?


Re: [web2py] Re: web2py on github

2011-12-21 Thread Bruce Wade
My problem with bitbucket is the 5 cap for free private, if you are wanting
to use git and keep the projects public I recommend gitorious.

2011/12/21 Daniel Aguayo Catalán daniel.agu...@gmail.com

 Daniel Aguayo Catalán escribió:

  mdipierro escribió:

 I somebody wants to keep an official mirror there I have no
 objection. I prefer to stick with mercurial on Google because
 mercurial is 100% python.

 On Apr 5, 1:53 am, elffikkelff...@gmail.com  wrote:

 hi,

 I use a few project stored on github, and I find it easier to navigate
 source code or to get a trunk version.
 What about moving web2py on github?

 I'm sorry to bump this out (and/or could be kind of obvious), but why
 github and not bitbucket?


 I'm new to bitbucket but I see that it also supports git, so... it's the
 github interface the killer feature? the 5 users cap for free accounts?




-- 
-- 
Regards,
Bruce Wade
http://ca.linkedin.com/in/brucelwade
http://www.wadecybertech.com
http://www.warplydesigned.com
http://www.fitnessfriendsfinder.com


Re: [web2py] Re: web2py on github

2011-12-21 Thread Chandrakant Kumar

the 5 users cap is only for free private repos, not for public repos.

On Wed, 21 Dec 2011 20:14:51 +0530, Bruce Wade bruce.w...@gmail.com  
wrote:


My problem with bitbucket is the 5 cap for free private, if you are  
wanting

to use git and keep the projects public I recommend gitorious.

2011/12/21 Daniel Aguayo Catalán daniel.agu...@gmail.com


Daniel Aguayo Catalán escribió:

 mdipierro escribió:

snip


I'm new to bitbucket but I see that it also supports git, so... it's the
github interface the killer feature? the 5 users cap for free accounts?










Re: [web2py] Re: web2py on github

2011-12-21 Thread Daniel Aguayo Catalán

Bruce Wade escribió:
My problem with bitbucket is the 5 cap for free private, if you are 
wanting to use git and keep the projects public I recommend gitorious.
I like gitorious because it's FLOSS and 'eats its own dog food' 
(gitorious code is hosted on gitorious), but private projects **for 
free** (as in beer) on bitbucket are useful, example, for personal 
project I don't want to release until they're finished. github doesn't 
allow any private project for free and gitorious doesn't have this 
feature yet (but it is in the roadmap and will not be free as in beer).


I know that web2py doesn't need a private project option, but since 
bitbucket is also free and support git, has issue tracker, wiki, etc, 
why use github? I really want to know...





Re: [web2py] Re: web2py on github

2011-12-21 Thread Anthony
On Wednesday, December 21, 2011 9:44:51 AM UTC-5, Detectedstealth wrote:

 My problem with bitbucket is the 5 cap for free private


At least they have a free option for private repositories -- github does 
not. Does anyone offer free private repositories with unlimited 
collaborators? 


Re: [web2py] Re: web2py on github

2011-12-21 Thread Willoughby
Short Answer: Because that's what the developers wanted and agreed to.

Search the web2py-developer group for the months long discussion on 
changing it if you really want to know



On Wednesday, December 21, 2011 10:20:38 AM UTC-5, Daniel Aguayo wrote:

 I know that web2py doesn't need a private project option, but since 
 bitbucket is also free and support git, has issue tracker, wiki, etc, 
 why use github? I really want to know...




[web2py] Re: web2py on github

2011-12-21 Thread Massimo Di Pierro
I hate all changes related to this topic. This is because I have to
learn a new system and do extra work to move stuff around. There was a
lot of push for git and github so we did it.

Please, let's not open this can of worms again. The costs of changing
outweighs the benefits.

Massimo

On Dec 21, 1:45 pm, Willoughby neil.erik...@gmail.com wrote:
 Short Answer: Because that's what the developers wanted and agreed to.

 Search the web2py-developer group for the months long discussion on
 changing it if you really want to know







 On Wednesday, December 21, 2011 10:20:38 AM UTC-5, Daniel Aguayo wrote:

  I know that web2py doesn't need a private project option, but since
  bitbucket is also free and support git, has issue tracker, wiki, etc,
  why use github? I really want to know...


Re: [web2py] Re: web2py on github

2011-12-21 Thread Daniel Aguayo Catalán

Massimo Di Pierro wrote:

I hate all changes related to this topic. This is because I have to
learn a new system and do extra work to move stuff around. There was a
lot of push for git and github so we did it.

Please, let's not open this can of worms again. The costs of changing
outweighs the benefits.

Massimo

He he, don't worry :). My apologies if this topic is still kind of 
sensible. I thought that bitbucket was more restrictive and the free 
private project hosting was a plus and killer feature over other 
services, at least for me (that sadly have not gitourious nor github). 
So I just wanna to know a comparison of bitbucket and github from your 
perspective to choose my personal repo, but now I can see that was 
nothing in particular.


I know that github is the 'pop-choice' for project hosting these days 
and I have no problem with that (gitorious.org and bitbucket has fairly 
same workflow as github), so please don't considerate this as a kind of 
flame of DVCS hosting.


Thanks to all for your answer.
Best regards
--
Daniel


[web2py] Re: web2py on github

2011-07-21 Thread luckysmack
because i already know and use git everyday for personal use and at
work. So i know it. in mercurial i kinda know how to pull the updates.
heh. just never really used it much. Not saying it isnt easy to learn
or better/worse. Just that im already using git. if the core was in
git i could so git submodules for the individual applications so all i
would have to do is checkout web2py and update the app and i have
everything. I have no idea how to set that up in mercurial or even how
to mercurial in general.

On Jul 20, 9:12 pm, Jonathan Lundell jlund...@pobox.com wrote:
 On Jul 20, 2011, at 7:05 PM, luckysmack wrote:



  oh yea? well thats handy. am i able to fork/clone a mercurial repo as
  a git repo?

 Why git, btw? Seems like sticking with hg would be more straightforward.









  On Jul 20, 4:33 am, blackthorne francisco@gmail.com wrote:
  be aware that google code hosting now supports git..

  On Jul 20, 4:44 am, luckysmack luckysm...@gmail.com wrote:

  Well i was going to for the original. But it being so out of date, i
  thought i would just take the mercurial branch and use a tool to
  convert the code and its branches with history to git. that way it is
  exactly what is in the mercurial repos. But doing that i cant fork it.
  i would need to create my own repo. which would mean there would be
  duplicate repos for web2py. is there a way i can for the one on github
  and then merge in the converted mercurial to git copy? since they
  essentially have separate remotes. Anyone know of a way i could do
  this?

  On Jul 19, 8:31 pm, luckysmack luckysm...@gmail.com wrote:

  Letting those users out there know that I will forking the web2py on
  github (which is outdated) and will be updating it as I will need it
  and its easier (for me at least) to keep all my repos in one location.
  Ive already forked it and will be updating it shortly.

 https://github.com/luckysmack/web2py


[web2py] Re: web2py on github

2011-07-21 Thread Massimo Di Pierro
In the past a user has posted a version of web2py on bitbucket. The
user did not keep it in sync not updated and this has confused some
prospective users.
So please add a clear notice that links the official page and declares
when your code is updated manually (I so assume) and may get out of
sync.

Massimo

On Jul 21, 12:01 pm, luckysmack luckysm...@gmail.com wrote:
 because i already know and use git everyday for personal use and at
 work. So i know it. in mercurial i kinda know how to pull the updates.
 heh. just never really used it much. Not saying it isnt easy to learn
 or better/worse. Just that im already using git. if the core was in
 git i could so git submodules for the individual applications so all i
 would have to do is checkout web2py and update the app and i have
 everything. I have no idea how to set that up in mercurial or even how
 to mercurial in general.

 On Jul 20, 9:12 pm, Jonathan Lundell jlund...@pobox.com wrote:







  On Jul 20, 2011, at 7:05 PM, luckysmack wrote:

   oh yea? well thats handy. am i able to fork/clone a mercurial repo as
   a git repo?

  Why git, btw? Seems like sticking with hg would be more straightforward.

   On Jul 20, 4:33 am, blackthorne francisco@gmail.com wrote:
   be aware that google code hosting now supports git..

   On Jul 20, 4:44 am, luckysmack luckysm...@gmail.com wrote:

   Well i was going to for the original. But it being so out of date, i
   thought i would just take the mercurial branch and use a tool to
   convert the code and its branches with history to git. that way it is
   exactly what is in the mercurial repos. But doing that i cant fork it.
   i would need to create my own repo. which would mean there would be
   duplicate repos for web2py. is there a way i can for the one on github
   and then merge in the converted mercurial to git copy? since they
   essentially have separate remotes. Anyone know of a way i could do
   this?

   On Jul 19, 8:31 pm, luckysmack luckysm...@gmail.com wrote:

   Letting those users out there know that I will forking the web2py on
   github (which is outdated) and will be updating it as I will need it
   and its easier (for me at least) to keep all my repos in one location.
   Ive already forked it and will be updating it shortly.

  https://github.com/luckysmack/web2py


[web2py] Re: web2py on github

2011-07-21 Thread pbreit
A lot of code is stored in mercurial so it might be worthwhile to learn it. 
It's quite easy.

If you don't have mercurial installed, install in your preferred way 
(apt-get, easy_install, pip).

Then you only need a couple commands:

To grab Web2py:
$ hg clone https://code.google.com/p/web2py/ web2py

To pull all new changes (but not update your working directory):
$ hg pull

To update your working directory to the latest:
$ hg update

To update your working directory to a specific changeset:
$ hg update [changeset id]

You can use git for your applications, no problem.

This will be *much* easier than trying to sync in git.

Good tutorials:
http://hginit.com
http://mercurial.selenic.com


[web2py] Re: web2py on github

2011-07-21 Thread luckysmack
yea i have it installed already. Im thinking maybe at this point it
might be easier to just use hg. But there is an app out there that
will take a mercurial repos and convert everything into a git repo
including commits and the full history. I tried it at home and it
works great. cant think of the name. ill have to get back to you on
the name. but it worked well.

On Jul 21, 11:25 am, pbreit pbreitenb...@gmail.com wrote:
 A lot of code is stored in mercurial so it might be worthwhile to learn it.
 It's quite easy.

 If you don't have mercurial installed, install in your preferred way
 (apt-get, easy_install, pip).

 Then you only need a couple commands:

 To grab Web2py:
 $ hg clonehttps://code.google.com/p/web2py/web2py

 To pull all new changes (but not update your working directory):
 $ hg pull

 To update your working directory to the latest:
 $ hg update

 To update your working directory to a specific changeset:
 $ hg update [changeset id]

 You can use git for your applications, no problem.

 This will be *much* easier than trying to sync in git.

 Good tutorials:http://hginit.comhttp://mercurial.selenic.com


[web2py] Re: web2py on github

2011-07-20 Thread blackthorne
be aware that google code hosting now supports git..

On Jul 20, 4:44 am, luckysmack luckysm...@gmail.com wrote:
 Well i was going to for the original. But it being so out of date, i
 thought i would just take the mercurial branch and use a tool to
 convert the code and its branches with history to git. that way it is
 exactly what is in the mercurial repos. But doing that i cant fork it.
 i would need to create my own repo. which would mean there would be
 duplicate repos for web2py. is there a way i can for the one on github
 and then merge in the converted mercurial to git copy? since they
 essentially have separate remotes. Anyone know of a way i could do
 this?

 On Jul 19, 8:31 pm, luckysmack luckysm...@gmail.com wrote:



  Letting those users out there know that I will forking the web2py on
  github (which is outdated) and will be updating it as I will need it
  and its easier (for me at least) to keep all my repos in one location.
  Ive already forked it and will be updating it shortly.

 https://github.com/luckysmack/web2py


[web2py] Re: web2py on github

2011-07-20 Thread luckysmack
oh yea? well thats handy. am i able to fork/clone a mercurial repo as
a git repo?

On Jul 20, 4:33 am, blackthorne francisco@gmail.com wrote:
 be aware that google code hosting now supports git..

 On Jul 20, 4:44 am, luckysmack luckysm...@gmail.com wrote:







  Well i was going to for the original. But it being so out of date, i
  thought i would just take the mercurial branch and use a tool to
  convert the code and its branches with history to git. that way it is
  exactly what is in the mercurial repos. But doing that i cant fork it.
  i would need to create my own repo. which would mean there would be
  duplicate repos for web2py. is there a way i can for the one on github
  and then merge in the converted mercurial to git copy? since they
  essentially have separate remotes. Anyone know of a way i could do
  this?

  On Jul 19, 8:31 pm, luckysmack luckysm...@gmail.com wrote:

   Letting those users out there know that I will forking the web2py on
   github (which is outdated) and will be updating it as I will need it
   and its easier (for me at least) to keep all my repos in one location.
   Ive already forked it and will be updating it shortly.

  https://github.com/luckysmack/web2py


Re: [web2py] Re: web2py on github

2011-07-20 Thread Jonathan Lundell
On Jul 20, 2011, at 7:05 PM, luckysmack wrote:
 
 oh yea? well thats handy. am i able to fork/clone a mercurial repo as
 a git repo?

Why git, btw? Seems like sticking with hg would be more straightforward.

 
 On Jul 20, 4:33 am, blackthorne francisco@gmail.com wrote:
 be aware that google code hosting now supports git..
 
 On Jul 20, 4:44 am, luckysmack luckysm...@gmail.com wrote:
 
 
 
 
 
 
 
 Well i was going to for the original. But it being so out of date, i
 thought i would just take the mercurial branch and use a tool to
 convert the code and its branches with history to git. that way it is
 exactly what is in the mercurial repos. But doing that i cant fork it.
 i would need to create my own repo. which would mean there would be
 duplicate repos for web2py. is there a way i can for the one on github
 and then merge in the converted mercurial to git copy? since they
 essentially have separate remotes. Anyone know of a way i could do
 this?
 
 On Jul 19, 8:31 pm, luckysmack luckysm...@gmail.com wrote:
 
 Letting those users out there know that I will forking the web2py on
 github (which is outdated) and will be updating it as I will need it
 and its easier (for me at least) to keep all my repos in one location.
 Ive already forked it and will be updating it shortly.
 
 https://github.com/luckysmack/web2py




[web2py] Re: web2py on github

2011-07-19 Thread luckysmack
Well i was going to for the original. But it being so out of date, i
thought i would just take the mercurial branch and use a tool to
convert the code and its branches with history to git. that way it is
exactly what is in the mercurial repos. But doing that i cant fork it.
i would need to create my own repo. which would mean there would be
duplicate repos for web2py. is there a way i can for the one on github
and then merge in the converted mercurial to git copy? since they
essentially have separate remotes. Anyone know of a way i could do
this?


On Jul 19, 8:31 pm, luckysmack luckysm...@gmail.com wrote:
 Letting those users out there know that I will forking the web2py on
 github (which is outdated) and will be updating it as I will need it
 and its easier (for me at least) to keep all my repos in one location.
 Ive already forked it and will be updating it shortly.

 https://github.com/luckysmack/web2py


[web2py] Re: web2py on github

2010-04-05 Thread mdipierro
I somebody wants to keep an official mirror there I have no
objection. I prefer to stick with mercurial on Google because
mercurial is 100% python.

On Apr 5, 1:53 am, elffikk elff...@gmail.com wrote:
 hi,

 I use a few project stored on github, and I find it easier to navigate
 source code or to get a trunk version.
 What about moving web2py on github?

-- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To post to this group, send email to web...@googlegroups.com.
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.