On Sun, Jul 10, 2011 at 5:30 AM, leo <eilinx....@gmail.com> wrote:

>  hi, sax
> I downloaded the package and want to install is using normal way
> then I got error like this:
>
> D:\saxix-django-iadmin-ec7ad2a>setup.py install
> Traceback (most recent call last):
>   File "D:\saxix-django-iadmin-ec7ad2a\setup.py", line 44, in <module>
>     version = ".".join(iadmin.__version__),
> TypeError: sequence item 0: expected string, int found
>

Oh jeez, looks like that release is broken.

Go to here: "D:\saxix-django-iadmin-ec7ad2a\setup.py", line 44

And replace this line:
version = ".".join(iadmin.__version__),

With this:
version = ".".join(map(lambda x: str(x), iadmin.__version__)),

(the above just basically recasts the values in that list as string objects,
rather than ints. I suspect this was caused by the string not having a dot
or something)

Let me know if that works.

Cal


>
> I got confused because the package install procedure is different
> with online's manual...
>
>
>
>
> On 2011/7/5 3:26, sax wrote:
>
> yep, but more test needed....
>
> sax
>
>
>
> 2011/7/4 Fred Chevitarese <fchevitar...@gmail.com>
>
>> Hmmm I like it !
>>
>>  All those features are already working?
>>
>>
>>  ^^
>>
>>
>>  "
>> *O relógio da vida recebe corda apenas uma vez.*
>> *Ninguém tem o poder de decidir quando os ponteiros pararão, se mais cedo
>> ou se mais tarde.*
>> *O presente é o único tempo que você possui.*
>> *Viva, ame e trabalhe com vontade.*
>>  *Não ponha nenhuma esperança no tempo, pois o relógio pode parar a
>> qualquer momento.*
>> "
>>
>>  Fred Chevitarese - GNU/Linux
>> http://chevitarese.wordpress.com
>>
>>
>>
>>
>>
>>  2011/7/4 creecode <creec...@gmail.com>
>>
>>> Sounds interesting!  Thanks!
>>>
>>>
>>> On Monday, July 4, 2011 11:06:44 AM UTC-7, sax wrote:
>>>>
>>>> Django iAdmin
>>>>
>>>> iAdmin is a replacement of standard django admin application.
>>>> Features
>>>>
>>>>    - multiple columns portlets-like home page
>>>>    - tabbed view of inlines
>>>>    - mass updates functionality
>>>>    - export to csv with options and formatting
>>>>    - advanced import from csv with foreign key handling
>>>>    - link to foreignkey edit page from changelist
>>>>    (list_display_rel_links)
>>>>    - filter by cell values (cell_filters)
>>>>    - ajax autocomplete widgets for ForeignKey
>>>>    - auto register missed modules.
>>>>    - auto add fields not present in fieldset (add_undefined_fields)
>>>>    - utilities ( tabular_factory)
>>>>    - info page for packages and application version
>>>>    - integrated file manager with upload/zip functionality
>>>>    - WYSIWYG editor wymeditor
>>>>    - shortcuts to configure django.contrib.* applications
>>>>
>>>>   --
>>> You received this message because you are subscribed to the Google Groups
>>> "Django users" group.
>>>  To view this discussion on the web visit
>>> https://groups.google.com/d/msg/django-users/-/PCtWyR-jwVMJ.
>>>
>>> To post to this group, send email to django-users@googlegroups.com.
>>> To unsubscribe from this group, send email to
>>> django-users+unsubscr...@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/django-users?hl=en.
>>>
>>
>>   --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>
> --
> chlin
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

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

Reply via email to