drupy-general Mailing List for Drupy
Status: Inactive
Brought to you by:
message144
You can subscribe to this list here.
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(4) |
Oct
(1) |
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2009 |
Jan
(4) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Fernando P. G. <fer...@gm...> - 2009-08-31 12:43:34
|
The project is closed as far as I know. Blessings! On Sat, Aug 29, 2009 at 1:50 AM, Hua Yanghao <hua...@gm...> wrote: > Haven't see any updates since Jan. 2009. > > -- > Thanks & Best Regards, > Hua Yanghao > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Drupy-general mailing list > Dru...@li... > https://lists.sourceforge.net/lists/listinfo/drupy-general > > -- Fernando P. García, http://www.develcuy.com Developer - Analista de Sistemas +51 1 9 8991 7871, Calle Santa Catalina Ancha #377, Cusco -Perú ** Antes de imprimir este mensaje piensa en tu compromiso con el medio ambiente, protegerlo depende de tí. |
|
From: Hua Y. <hua...@gm...> - 2009-08-29 06:50:59
|
Haven't see any updates since Jan. 2009. -- Thanks & Best Regards, Hua Yanghao |
|
From: Travis H. <tr...@ra...> - 2009-02-27 03:40:30
|
6 or 7 ? |
|
From: Dewey ` <ss....@gm...> - 2009-02-05 16:42:59
|
Some problem with old Drupy:
First, error on *includes/bootstrap.py* in *conf_init*()
406 if (php.ini_get('session.cookie_secure')):
'module' object has no attribute 'ini_get'
After that, I commented this line and another error appeared
*drupy/DrupyMySQL.py* in *mysqli_real_escape_string*(connection=None,
text='127.0.0.1')
192 return connection.escape_string(text)
'NoneType' object has no attribute 'escape_string
I can't test my ported module. What shoud I do?
TIA
|
|
From: P. C. G. <pas...@gm...> - 2009-01-20 09:21:48
|
Would we watch the new database scheme for learning it? django code is available for test it? A thing I think it would be useful is to implement a wiki in drupy, a new feature. I have some ideas more, that we can add to a cms as drupy. Best regards!! |
|
From: Brendon C. <mes...@us...> - 2009-01-20 03:59:44
|
Hi Sean, I am doing very local unit tests for each function written, and doing my best to independently run each function. As of right now, I have just completed my first milestone which is to have a functional node.load() constructor. In drupal, node_load() builds a node object which is the core of all Drupal functionality. So, with that said, at this point I have very very basic features in place, which I suppose would qualify as "non functional". With the switch to Django, development is however moving along much faster than it previously was with the old codebase. So, you should expect to see consistant improvements over the next year or so. Sean Chitwood wrote: > Hello-- > I am interested in Drupy both as a CMS and as a project to help learn > python on and I was wondering what the state of it was since the recent > change, would you describe it as > > "Non functional", "semi functional" or "basically functional". I'm > assuming it is not fully functional. > > --Sean > > Calendar: http://www.google.com/calendar/embed?src=darkmane%40gmail.com > Livejournal: http://darkmane.livejournal.com > > Every 5 minutes you spend writing code in a new language is more useful than > 5 hours reading blog posts about how great the language is. > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > SourcForge Community > SourceForge wants to tell your story. > http://p.sf.net/sfu/sf-spreadtheword > > > ------------------------------------------------------------------------ > > _______________________________________________ > Drupy-general mailing list > Dru...@li... > https://lists.sourceforge.net/lists/listinfo/drupy-general |
|
From: Sean C. <dar...@gm...> - 2009-01-20 03:29:48
|
Hello--
I am interested in Drupy both as a CMS and as a project to help learn
python on and I was wondering what the state of it was since the recent
change, would you describe it as
"Non functional", "semi functional" or "basically functional". I'm
assuming it is not fully functional.
--Sean
Calendar: http://www.google.com/calendar/embed?src=darkmane%40gmail.com
Livejournal: http://darkmane.livejournal.com
Every 5 minutes you spend writing code in a new language is more useful than
5 hours reading blog posts about how great the language is.
|
|
From: Dewey ` <ss....@gm...> - 2009-01-03 10:52:06
|
Happy New Year 2009 I'm just a Drupal lover and 4th year student at Kasetsart University, Thailand. So, In my senior project, I decide to porting Drupal to Python. I thought it is very large project because I don't know much about Drupal and Python. Then I found Drupy missed 2 core modules, filter and block. (and theming system?). If I finished remaining modules, my project can be done. I have some questions. 1. Does Drupy required mod_python or other library than beaker, Python-Imaging, MySQL-Python, hashlib and mod_cgi? 2. In timeline does not include block.module, is it unnecessary? 3. Any suggestion or recommended tool because I'm a Python newbie.(esspecially debugging tools) Thank you in advance. |
|
From: Fernando P. G. <fer...@gm...> - 2008-10-03 05:35:19
|
password.inc is 99% ready but I have a problem with "pass" statement:
PHP version:
function user_check_password($password, $account) {
if (substr($account->pass, 0, 3) == 'U$P') {
// This may be an updated password from user_update_7000(). Such hashes
// have 'U' added as the first character and need an extra md5().
$stored_hash = substr($account->pass, 1);
$password = md5($password);
}
else {
$stored_hash = $account->pass;
}
$hash = _password_crypt($password, $stored_hash);
return ($hash && $stored_hash == $hash);
}
Python version:
def user_check_password(password, account):
if (substr(account.pasw, 0, 3) == 'U$P'):
# This may be an updated password from user_update_7000(). Such hashes
# have 'U' added as the first character and need an extra md5().
stored_hash = substr(account.pasw, 1)
password = php.md5(password)
else:
stored_hash = account.pasw
hash = _crypt(password, stored_hash)
return (hash and stored_hash == hash)
I have renamed "pass" to "pasw", because Drupal plays with arrays to
objects and sometimes objects to arrrays, I don't really know how
$account got the property "pass" or can I just account['pass']?
Blessings and Thanks in advance!
|
|
From: Brendon <mes...@us...> - 2008-09-26 03:34:10
|
TwoFX, Thanks for your offer to help. The project certainly could use as much help as possible. One file that would be a good place to start would be to try porting includes/image.inc. When done, you can submit a merge request. Let me know if you have any questions with it. Thanks On Sep 25, 2008, at 12:33 PM, two xfh wrote: > I would really like to see Drupal written in Python and I am willing > to help > out. Are there specific tasks that need be done or is it just code > merge > requests? How can I help this project succeed? > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win > great prizes > Grand prize is a trip for two to an Open Source event anywhere in > the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/_______________________________________________ > Drupy-general mailing list > Dru...@li... > https://lists.sourceforge.net/lists/listinfo/drupy-general ------------ Brendon Crawford IRC: mes...@fr... AIM: bre...@gm... GTALK: bre...@gm... MSN: bre...@gm... YIM: brendoncrawford SKYPE: brendoncrawford "Life is short, the art long, opportunity fleeting, experiment treacherous, and judgment difficult." - Hippocrates |
|
From: two x. <tw...@gm...> - 2008-09-25 19:34:07
|
I would really like to see Drupal written in Python and I am willing to help out. Are there specific tasks that need be done or is it just code merge requests? How can I help this project succeed? |
|
From: Brendon <mes...@us...> - 2008-09-22 19:21:51
|
You need to supply proper MySQL credentials. DBUSER, DBHOST, and DBNAME are just placeholders. The password prompt is for your MySQL user's password. I would recommend reading more on mysql command line usage. On Sep 22, 2008, at 9:16 AM, Daniel González Gasull wrote: > Hi. > > I'm following the instructions in the .pdf for installing Drupy. I > cannot continue after this step: > > gunzip -c $(find schema -name "*.sql.gz" | tail -n 1) | mysql -u > DBUSER -h DBHOST -p DBNAME > > It asks for a password. I just installed MySQL. It seems I'm missing > a step after installing MySQL. What should I do? > > TIA. > > -- > Daniel González Gasull > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win > great prizes > Grand prize is a trip for two to an Open Source event anywhere in > the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Drupy-general mailing list > Dru...@li... > https://lists.sourceforge.net/lists/listinfo/drupy-general ------------ Brendon Crawford IRC: mes...@fr... AIM: bre...@gm... GTALK: bre...@gm... MSN: bre...@gm... YIM: brendoncrawford SKYPE: brendoncrawford "Life is short, the art long, opportunity fleeting, experiment treacherous, and judgment difficult." - Hippocrates |
|
From: D. G. G. <ga...@gm...> - 2008-09-22 16:16:56
|
Hi.
I'm following the instructions in the .pdf for installing Drupy. I
cannot continue after this step:
gunzip -c $(find schema -name "*.sql.gz" | tail -n 1) | mysql -u
DBUSER -h DBHOST -p DBNAME
It asks for a password. I just installed MySQL. It seems I'm missing
a step after installing MySQL. What should I do?
TIA.
--
Daniel González Gasull
|
|
From: Brendon <mes...@us...> - 2008-08-27 07:28:42
|
Feel free to ask any questions here in the mailing list. Most questions will be answered. |