Re: DAILY,MONTHLY AND ANNUAL REPORTS

2023-08-09 Thread ivan harold
is this thread closed? resolved?


On Saturday, July 22, 2023 at 8:08:48 AM UTC+8 Ryan Nowakowski wrote:

> Check out the Sum() aggregate:
>
> https://docs.djangoproject.com/en/4.2/topics/db/aggregation/
>
>
> On July 21, 2023 12:41:48 PM CDT, Abdou KARAMBIZI  
> wrote:
>
>> Hello Friends,
>>
>> How can I get weekly,Monthly and annual reports? from the following model.
>> I want to get the total amount paid in the week,month and year 
>>
>>
>> class Payments(models.Model):
>> id = models.AutoField(primary_key = True)
>> amount = models.IntegerField()
>> paidon = models.DateField(auto_now=True)
>>
>> def __str__ (self):
>> return self.id
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9f84c4fd-0c83-463a-a39f-ff089b233211n%40googlegroups.com.


Re: DAILY,MONTHLY AND ANNUAL REPORTS

2023-07-21 Thread Prashanth Patelc
Write a condition based on paidon date filed like filter date ,
If date is today get last 7days report and get last month report.

On Fri, Jul 21, 2023, 11:12 PM Abdou KARAMBIZI 
wrote:

> Hello Friends,
>
> How can I get weekly,Monthly and annual reports? from the following model.
> I want to get the total amount paid in the week,month and year
>
>
> class Payments(models.Model):
> id = models.AutoField(primary_key = True)
> amount = models.IntegerField()
> paidon = models.DateField(auto_now=True)
>
> def __str__ (self):
> return self.id
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CABnE44wPtzkAL5YJ4uh3eRpupXUpH%3DkTJL71obTpTthorCdrTw%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CABnE44wPtzkAL5YJ4uh3eRpupXUpH%3DkTJL71obTpTthorCdrTw%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMCU6Co%2B8t1OZYAavf0CvhU6S9Boe2-%2B71fynpxiYWeiGDGijw%40mail.gmail.com.


DAILY,MONTHLY AND ANNUAL REPORTS

2023-07-21 Thread Abdou KARAMBIZI
Hello Friends,

How can I get weekly,Monthly and annual reports? from the following model.
I want to get the total amount paid in the week,month and year


class Payments(models.Model):
id = models.AutoField(primary_key = True)
amount = models.IntegerField()
paidon = models.DateField(auto_now=True)

def __str__ (self):
return self.id

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CABnE44wPtzkAL5YJ4uh3eRpupXUpH%3DkTJL71obTpTthorCdrTw%40mail.gmail.com.


Re: Building reports in Django / Python

2021-04-24 Thread Eugene TUYIZERE
Pandas and matplotlib can solve your problem

Sent from my iPhone

> On 24 Apr 2021, at 22:53, Benny M  wrote:
> 
> Ah! Had to go back and read again. I think I misunderstood.
> 
> While I don’t have a ton of experience with either, Pandas and Prometheus are 
> popular analysis libraries. I’ve seen cases where a CMS is built around 
> Pandas for user interaction... but that does requires bit of code work to 
> build out the forms and resultant tables.
> 
> Benny
> 
> 
> 
>> On Apr 24, 2021, at 3:33 PM, Andréas Kühne  
>> wrote:
>> 
>>  Thanks Benny,
>> 
>> I think I may have been a bit unclear. We have this working today with excel 
>> - and it works ok. The problem is that we have issues with layout and graph 
>> styling and so on. What I want to do is move away from excel to another 
>> solution - but I can’t seem to find any...
>> 
>> Med vänliga hälsningar,
>> 
>> Andréas
>> 
>>> 24 apr. 2021 kl. 22:13 skrev Benny M :
>>> 
>>>  This is a great use of management commands. I use that combined with a 
>>> cron job to generate reports on a schedule. The management command allows 
>>> you to use Django’s ORM for polling data, and there’s excel packages out 
>>> there (can’t think of a name off the top of my head), but even to that 
>>> point, excel will accept a CSV, which can very easily be constructed with 
>>> python. 
>>> 
>>> Hope this helps,
>>> Benny
>>> 
>>>> On Apr 24, 2021, at 3:04 PM, Andréas Kühne  
>>>> wrote:
>>>> 
>>>> 
>>>> Hi all,
>>>> 
>>>> I was wondering if anyone has any good resources for building reports in 
>>>> Django / Python. What I am trying to do is the following:
>>>> * I have built a questionnaire motor - it works more or less like google 
>>>> forms and collects the input from 1 or more respondents to a 
>>>> questionnaire. So far so good.
>>>> * We are currently exporting the data into excel, where we can build 
>>>> reports (with graphs and so on). However - this is not working the way we 
>>>> want it to.
>>>> * What we want to be able to do is somehow create a report from the data, 
>>>> and in certain cases group several questions into one graph. Now I know 
>>>> this can be done with code - but here's the tricky part - we want the 
>>>> users to be able to design their reports themselves.
>>>> * Finally we want to be able to PDF the report and send it to the end user 
>>>> (the respondent of the questionnaire).
>>>> 
>>>> So my questions are:
>>>> 1. Has anyone done anything like this? Does anyone have any pointers they 
>>>> could give me?
>>>> 2. Does anyone know of any good packages that could help? I am not talking 
>>>> about just using reportlab for PDF generation or matplotlib for creating 
>>>> graphs, but rather some more high level packages that would be a good 
>>>> inspiration?
>>>> 
>>>> I am trying to find something that could help me do this task - as I'm not 
>>>> really excited about creating this myself :)
>>>> 
>>>> Regards,
>>>> 
>>>> Andréas
>>>> -- 
>>>> You received this message because you are subscribed to the Google Groups 
>>>> "Django users" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>>> email to django-users+unsubscr...@googlegroups.com.
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/django-users/CAK4qSCcANYcwGkHxNTpkU%2BGa6-_d9FRdvaGUJKAg4DqZAN9FJg%40mail.gmail.com.
>>> 
>>> -- 
>>> You received this message because you are subscribed to the Google Groups 
>>> "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>> email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/CH2PR14MB3913F92052E193091E8ACBDCC0449%40CH2PR14MB3913.namprd14.prod.outlook.com.
>> 
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CFF6E9E5-64D3-49B3-AEFD-13CAB587AB98%40hypercode.se.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CH2PR14MB39131E5550BF63148ED260A6C0449%40CH2PR14MB3913.namprd14.prod.outlook.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/D539F6C5-4C69-4786-91C6-EBEA7BC8DEF4%40gmail.com.


Re: Building reports in Django / Python

2021-04-24 Thread Benny M
Ah! Had to go back and read again. I think I misunderstood.

While I don’t have a ton of experience with either, Pandas and Prometheus are 
popular analysis libraries. I’ve seen cases where a CMS is built around Pandas 
for user interaction... but that does requires bit of code work to build out 
the forms and resultant tables.

Benny



On Apr 24, 2021, at 3:33 PM, Andréas Kühne  wrote:

 Thanks Benny,

I think I may have been a bit unclear. We have this working today with excel - 
and it works ok. The problem is that we have issues with layout and graph 
styling and so on. What I want to do is move away from excel to another 
solution - but I can’t seem to find any...

Med vänliga hälsningar,

Andréas

24 apr. 2021 kl. 22:13 skrev Benny M :

 This is a great use of management commands. I use that combined with a cron 
job to generate reports on a schedule. The management command allows you to use 
Django’s ORM for polling data, and there’s excel packages out there (can’t 
think of a name off the top of my head), but even to that point, excel will 
accept a CSV, which can very easily be constructed with python.

Hope this helps,
Benny

On Apr 24, 2021, at 3:04 PM, Andréas Kühne  wrote:


Hi all,

I was wondering if anyone has any good resources for building reports in Django 
/ Python. What I am trying to do is the following:
* I have built a questionnaire motor - it works more or less like google forms 
and collects the input from 1 or more respondents to a questionnaire. So far so 
good.
* We are currently exporting the data into excel, where we can build reports 
(with graphs and so on). However - this is not working the way we want it to.
* What we want to be able to do is somehow create a report from the data, and 
in certain cases group several questions into one graph. Now I know this can be 
done with code - but here's the tricky part - we want the users to be able to 
design their reports themselves.
* Finally we want to be able to PDF the report and send it to the end user (the 
respondent of the questionnaire).

So my questions are:
1. Has anyone done anything like this? Does anyone have any pointers they could 
give me?
2. Does anyone know of any good packages that could help? I am not talking 
about just using reportlab for PDF generation or matplotlib for creating 
graphs, but rather some more high level packages that would be a good 
inspiration?

I am trying to find something that could help me do this task - as I'm not 
really excited about creating this myself :)

Regards,

Andréas

--
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
django-users+unsubscr...@googlegroups.com<mailto:django-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK4qSCcANYcwGkHxNTpkU%2BGa6-_d9FRdvaGUJKAg4DqZAN9FJg%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAK4qSCcANYcwGkHxNTpkU%2BGa6-_d9FRdvaGUJKAg4DqZAN9FJg%40mail.gmail.com?utm_medium=email_source=footer>.

--
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
django-users+unsubscr...@googlegroups.com<mailto:django-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CH2PR14MB3913F92052E193091E8ACBDCC0449%40CH2PR14MB3913.namprd14.prod.outlook.com<https://groups.google.com/d/msgid/django-users/CH2PR14MB3913F92052E193091E8ACBDCC0449%40CH2PR14MB3913.namprd14.prod.outlook.com?utm_medium=email_source=footer>.

--
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
django-users+unsubscr...@googlegroups.com<mailto:django-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CFF6E9E5-64D3-49B3-AEFD-13CAB587AB98%40hypercode.se<https://groups.google.com/d/msgid/django-users/CFF6E9E5-64D3-49B3-AEFD-13CAB587AB98%40hypercode.se?utm_medium=email_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CH2PR14MB39131E5550BF63148ED260A6C0449%40CH2PR14MB3913.namprd14.prod.outlook.com.


Re: Building reports in Django / Python

2021-04-24 Thread Andréas Kühne
Thanks Benny,

I think I may have been a bit unclear. We have this working today with excel - 
and it works ok. The problem is that we have issues with layout and graph 
styling and so on. What I want to do is move away from excel to another 
solution - but I can’t seem to find any...

Med vänliga hälsningar,

Andréas

> 24 apr. 2021 kl. 22:13 skrev Benny M :
> 
>  This is a great use of management commands. I use that combined with a cron 
> job to generate reports on a schedule. The management command allows you to 
> use Django’s ORM for polling data, and there’s excel packages out there 
> (can’t think of a name off the top of my head), but even to that point, excel 
> will accept a CSV, which can very easily be constructed with python. 
> 
> Hope this helps,
> Benny
> 
>>> On Apr 24, 2021, at 3:04 PM, Andréas Kühne  
>>> wrote:
>>> 
>> 
>> Hi all,
>> 
>> I was wondering if anyone has any good resources for building reports in 
>> Django / Python. What I am trying to do is the following:
>> * I have built a questionnaire motor - it works more or less like google 
>> forms and collects the input from 1 or more respondents to a questionnaire. 
>> So far so good.
>> * We are currently exporting the data into excel, where we can build reports 
>> (with graphs and so on). However - this is not working the way we want it to.
>> * What we want to be able to do is somehow create a report from the data, 
>> and in certain cases group several questions into one graph. Now I know this 
>> can be done with code - but here's the tricky part - we want the users to be 
>> able to design their reports themselves.
>> * Finally we want to be able to PDF the report and send it to the end user 
>> (the respondent of the questionnaire).
>> 
>> So my questions are:
>> 1. Has anyone done anything like this? Does anyone have any pointers they 
>> could give me?
>> 2. Does anyone know of any good packages that could help? I am not talking 
>> about just using reportlab for PDF generation or matplotlib for creating 
>> graphs, but rather some more high level packages that would be a good 
>> inspiration?
>> 
>> I am trying to find something that could help me do this task - as I'm not 
>> really excited about creating this myself :)
>> 
>> Regards,
>> 
>> Andréas
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAK4qSCcANYcwGkHxNTpkU%2BGa6-_d9FRdvaGUJKAg4DqZAN9FJg%40mail.gmail.com.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CH2PR14MB3913F92052E193091E8ACBDCC0449%40CH2PR14MB3913.namprd14.prod.outlook.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CFF6E9E5-64D3-49B3-AEFD-13CAB587AB98%40hypercode.se.


Re: Building reports in Django / Python

2021-04-24 Thread Benny M
This is a great use of management commands. I use that combined with a cron job 
to generate reports on a schedule. The management command allows you to use 
Django’s ORM for polling data, and there’s excel packages out there (can’t 
think of a name off the top of my head), but even to that point, excel will 
accept a CSV, which can very easily be constructed with python.

Hope this helps,
Benny

On Apr 24, 2021, at 3:04 PM, Andréas Kühne  wrote:


Hi all,

I was wondering if anyone has any good resources for building reports in Django 
/ Python. What I am trying to do is the following:
* I have built a questionnaire motor - it works more or less like google forms 
and collects the input from 1 or more respondents to a questionnaire. So far so 
good.
* We are currently exporting the data into excel, where we can build reports 
(with graphs and so on). However - this is not working the way we want it to.
* What we want to be able to do is somehow create a report from the data, and 
in certain cases group several questions into one graph. Now I know this can be 
done with code - but here's the tricky part - we want the users to be able to 
design their reports themselves.
* Finally we want to be able to PDF the report and send it to the end user (the 
respondent of the questionnaire).

So my questions are:
1. Has anyone done anything like this? Does anyone have any pointers they could 
give me?
2. Does anyone know of any good packages that could help? I am not talking 
about just using reportlab for PDF generation or matplotlib for creating 
graphs, but rather some more high level packages that would be a good 
inspiration?

I am trying to find something that could help me do this task - as I'm not 
really excited about creating this myself :)

Regards,

Andréas

--
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
django-users+unsubscr...@googlegroups.com<mailto:django-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK4qSCcANYcwGkHxNTpkU%2BGa6-_d9FRdvaGUJKAg4DqZAN9FJg%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAK4qSCcANYcwGkHxNTpkU%2BGa6-_d9FRdvaGUJKAg4DqZAN9FJg%40mail.gmail.com?utm_medium=email_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CH2PR14MB3913F92052E193091E8ACBDCC0449%40CH2PR14MB3913.namprd14.prod.outlook.com.


Building reports in Django / Python

2021-04-24 Thread Andréas Kühne
Hi all,

I was wondering if anyone has any good resources for building reports in
Django / Python. What I am trying to do is the following:
* I have built a questionnaire motor - it works more or less like google
forms and collects the input from 1 or more respondents to a questionnaire.
So far so good.
* We are currently exporting the data into excel, where we can build
reports (with graphs and so on). However - this is not working the way we
want it to.
* What we want to be able to do is somehow create a report from the data,
and in certain cases group several questions into one graph. Now I know
this can be done with code - but here's the tricky part - we want the users
to be able to design their reports themselves.
* Finally we want to be able to PDF the report and send it to the end user
(the respondent of the questionnaire).

So my questions are:
1. Has anyone done anything like this? Does anyone have any pointers they
could give me?
2. Does anyone know of any good packages that could help? I am not talking
about just using reportlab for PDF generation or matplotlib for creating
graphs, but rather some more high level packages that would be a good
inspiration?

I am trying to find something that could help me do this task - as I'm not
really excited about creating this myself :)

Regards,

Andréas

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK4qSCcANYcwGkHxNTpkU%2BGa6-_d9FRdvaGUJKAg4DqZAN9FJg%40mail.gmail.com.


JSONField with callable default reports ModelForm.has_changed() when it hasn't

2021-04-08 Thread Stuart Kelly
The issue is similar to this bug that has been fixed:
https://code.djangoproject.com/ticket/24428 however doesn't seem to be due
to coercion. I've discovered this when trying to update a project from
django 2.2 to 3.2

test case to reproduce (in a new django project/app)

```
from django.db import models
from django.forms import ModelForm


class Vehicle(models.Model):
modifications = models.JSONField(default=list, blank=True, null=True)


class VehicleForm(ModelForm):
class Meta:
model = Vehicle
fields = ("modifications", )


def test_vehicle_form():
vehicle = Vehicle.objects.create()
assert vehicle.modifications == []
data = {"modifications": "[]"}
form = VehicleForm(data, instance=vehicle)
assert form.is_valid()
assert not form.has_changed()
```

I would expect that test to pass, but it doesn't. I'm not sure exactly
where the error lies, but I have discovered the following:

```
field.show_hidden_initial == True
field.to_python(hidden_widget.value_from_datadict(self.data, self.files,
initial_prefixed_name)) == None
```
which then fails the check in field.has_changed
```
initial_value = initial if initial is not None else ''
data_value = data if data is not None else ''
return initial_value != data_value
```
because `data == []`

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFy-P0f5xB-CHiSSO50KAHmHNn6ha5nUEO-coOPj67zAZ00qhg%40mail.gmail.com.


Re: Reports in Django

2021-01-17 Thread Damanjeet Singh
In project I am using https://pivottable.js.org

On Sun, 17 Jan 2021, 13:29 Ali Sufyan,  wrote:

> Hi All:
>
> Do we have report making library like crystal reports
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1b11bbd4-4928-42f9-b905-014100b0128an%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/1b11bbd4-4928-42f9-b905-014100b0128an%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGLHGi7Or%2BFp2GYR6rp7xRnxK7LA9bECD1KUpU8hD2WhP-mJ7A%40mail.gmail.com.


Re: Reports in Django

2021-01-17 Thread ramadhan ngallen
Use reportlab or weasyprint as alternative to crystal reports they both depends 
on css
On 17 Jan 2021, 16:29 +0300, Ali Sufyan , wrote:
> Hi All:
>
> Do we have report making library like crystal reports
>  --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/1b11bbd4-4928-42f9-b905-014100b0128an%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ce00bea9-6610-4f52-aed2-69cbc565fd1f%40Spark.


Re: Reports in Django

2021-01-17 Thread gabriela...@gmail.com
Why you don't try with reporlab ? It's very easy to use. The only things 
that i don't know if I can make a sub-reports like Crystal. That is very 
uselfully.

Regards,

gabrielaraya2...@gmail.com
 

El domingo, 17 de enero de 2021 a las 10:29:20 UTC-3, alisuf...@gmail.com 
escribió:

> Hi All:
>
> Do we have report making library like crystal reports
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7198af00-8893-451e-8685-adf8e4de2d63n%40googlegroups.com.


Reports in Django

2021-01-17 Thread Ali Sufyan
Hi All:

Do we have report making library like crystal reports

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1b11bbd4-4928-42f9-b905-014100b0128an%40googlegroups.com.


Any Pypi Library to generate Different Reports on Connected models as well.as Different Graph Generation

2019-09-07 Thread Balaji Shetty
Hi everyone

Can any one of you please tell me is there Any Pypi Library to generate
Different Reports on Connected models as well.as Different Graph Generation.

I want to apply aggregate function like sum, count, avg, group by, having,
inner and outer join.


I want to generate in Django  admin only.

Thx in advance...


-- 
Mr Shetty Balaji
Asst. Prof.
IT Department
SGGS I
Nanded. My. India

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAECSbOvVkS7uzA5QGWRYMCTQzcv3RD9MTOY-knv6_1njwNC_iw%40mail.gmail.com.


Re: Why do my django email error reports have weird characters in the subject?

2019-07-19 Thread Tal
Ended up being related to the other problem I was having, where I was 
getting 2 emails for every exception, and both problems were caused by 
enabled django-channels.

Disabling django channels, or running django-channels in production with 
daphne, rather than using the channels ASGI development server, everything 
works - I only get one email, and its formatting is fine. The channels 
development server though sends me 2 emails if an exception is thrown, and 
one of the emails has those weird characters.

If anyone knows a way to fix this, let me know. If not, I'll just have to 
ignore it. I guess it doesn't really bother me if it doesn't happen in 
production.


On Friday, July 19, 2019 at 11:31:26 AM UTC-6, Tal wrote:
>
> Is this possibly related to the fact that I have django-channels enabled?
> I'll try disabling it to see if it's related.
>
> On Friday, July 19, 2019 at 9:46:20 AM UTC-6, Tal wrote:
>>
>> I setup my django 2.2.3 project to use gmail to send emails out.
>>
>> I also have it configured to send me emails about any exceptions that 
>> occur.
>>
>> To test it, I made a view with:
>>
>>
>> float('a')
>>
>> It works, but there are weird characters in the subject of the email I 
>> receive, and in the first part of the message. I think those are bash color 
>> code characters.
>>
>> Why am I seeing them? Is this a Django bug? Any way to fix it?
>>
>>
>>
>>
>> [image: Screen Shot 2019-07-19 at 9.38.26 AM.png]
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b42fd92c-fb0a-4dc9-97c8-d57b55f7b01d%40googlegroups.com.


Re: Why do my django email error reports have weird characters in the subject?

2019-07-19 Thread Tal
Is this possibly related to the fact that I have django-channels enabled?
I'll try disabling it to see if it's related.

On Friday, July 19, 2019 at 9:46:20 AM UTC-6, Tal wrote:
>
> I setup my django 2.2.3 project to use gmail to send emails out.
>
> I also have it configured to send me emails about any exceptions that 
> occur.
>
> To test it, I made a view with:
>
>
> float('a')
>
> It works, but there are weird characters in the subject of the email I 
> receive, and in the first part of the message. I think those are bash color 
> code characters.
>
> Why am I seeing them? Is this a Django bug? Any way to fix it?
>
>
>
>
> [image: Screen Shot 2019-07-19 at 9.38.26 AM.png]
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f2067717-a6da-486c-a80b-e4c21a0b5b57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Why do my django email error reports have weird characters in the subject?

2019-07-19 Thread Tal


I setup my django 2.2.3 project to use gmail to send emails out.

I also have it configured to send me emails about any exceptions that occur.

To test it, I made a view with:


float('a')

It works, but there are weird characters in the subject of the email I 
receive, and in the first part of the message. I think those are bash color 
code characters.

Why am I seeing them? Is this a Django bug? Any way to fix it?




[image: Screen Shot 2019-07-19 at 9.38.26 AM.png]

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/25ab432a-7dc8-4ac0-8751-d0c039bbc9fb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to create Different Graphs and PDF Reports

2019-06-24 Thread Joel Mathew
You can use reportlab for pdf generation

On Mon, 24 Jun, 2019, 9:18 PM Balaji Shetty,  wrote:

> HI
> can anyone suggest How to create Different Graphs and PDF Reports in
> Django Admin Panel itself which work on Models with relation.
> It there any library.
>
>
>
> --
>
>
> *Mr. Shetty Balaji S.Asst. ProfessorDepartment of Information Technology,*
> *SGGS Institute of Engineering & Technology, Vishnupuri, Nanded.MH.India*
> *Official: bsshe...@sggs.ac.in  *
> *  Mobile: +91-9270696267*
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAECSbOvi0sAta%3Do%2BmBf%2BVTBbTcAU6ZmZZBvWKoaU1T4-TFf2jw%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAECSbOvi0sAta%3Do%2BmBf%2BVTBbTcAU6ZmZZBvWKoaU1T4-TFf2jw%40mail.gmail.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA%3Diw__%3DM6XKNwu40og2wtrUDtk87K4%3DdXFet8ytas4Sa1rybA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to create Different Graphs and PDF Reports

2019-06-24 Thread ABHISHEK RAJ
Yes, you can use Fusion Charts <https://www.fusioncharts.com/>  library.
Here is the link
https://www.fusioncharts.com/blog/creating-charts-in-django/

On Mon 24 Jun, 2019, 9:18 PM Balaji Shetty,  wrote:

> HI
> can anyone suggest How to create Different Graphs and PDF Reports in
> Django Admin Panel itself which work on Models with relation.
> It there any library.
>
>
>
> --
>
>
> *Mr. Shetty Balaji S.Asst. ProfessorDepartment of Information Technology,*
> *SGGS Institute of Engineering & Technology, Vishnupuri, Nanded.MH.India*
> *Official: bsshe...@sggs.ac.in  *
> *  Mobile: +91-9270696267*
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAECSbOvi0sAta%3Do%2BmBf%2BVTBbTcAU6ZmZZBvWKoaU1T4-TFf2jw%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAECSbOvi0sAta%3Do%2BmBf%2BVTBbTcAU6ZmZZBvWKoaU1T4-TFf2jw%40mail.gmail.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEz5wc65Fga7GxMQyiWF%3D62cd73OKKXhpeH8vvHPP8koOUtgfQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


How to create Different Graphs and PDF Reports

2019-06-24 Thread Balaji Shetty
HI
can anyone suggest How to create Different Graphs and PDF Reports in Django
Admin Panel itself which work on Models with relation.
It there any library.



-- 


*Mr. Shetty Balaji S.Asst. ProfessorDepartment of Information Technology,*
*SGGS Institute of Engineering & Technology, Vishnupuri, Nanded.MH.India*
*Official: bsshe...@sggs.ac.in  *
*  Mobile: +91-9270696267*

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAECSbOvi0sAta%3Do%2BmBf%2BVTBbTcAU6ZmZZBvWKoaU1T4-TFf2jw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: I want to build dynamic report tool using and postgres and reports are like tables based on locations

2018-12-16 Thread aryan patel
Hi ,

Thanks for response.
Using that can I display my report on web.
And is it helpful to create that report location specific.

For example if any user logged in and it has role for a district then the
data should appear only for his district.


Regards,
Aryan

On Mon 17 Dec, 2018, 12:15 PM Jani Tiainen  Hi.
>
> I've been using wkhtmltopdf for my reports.
>
> It's very easy to use and best of all you can use whatever webkit browsers
> do support.
>
> There also exists reportlab that can generate reports.
>
> aryan patel  kirjoitti su 16. jouluk. 2018 klo
> 21.18:
>
>> Kindly give me any suggestions or any guidance .
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/75b7165f-4e51-4994-96b2-4482f5b219db%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/75b7165f-4e51-4994-96b2-4482f5b219db%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHn91odo16rBHqtvkWr-MHd%3DxXw4r8bHtevL3%2B__7HsYKT_c2Q%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAHn91odo16rBHqtvkWr-MHd%3DxXw4r8bHtevL3%2B__7HsYKT_c2Q%40mail.gmail.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAD5LVSDyq90YFq5fhNO8N6WMJ7qVE9vrSmTFoKym66A3uJO4FQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: I want to build dynamic report tool using and postgres and reports are like tables based on locations

2018-12-16 Thread Jani Tiainen
Hi.

I've been using wkhtmltopdf for my reports.

It's very easy to use and best of all you can use whatever webkit browsers
do support.

There also exists reportlab that can generate reports.

aryan patel  kirjoitti su 16. jouluk. 2018 klo
21.18:

> Kindly give me any suggestions or any guidance .
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/75b7165f-4e51-4994-96b2-4482f5b219db%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/75b7165f-4e51-4994-96b2-4482f5b219db%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHn91odo16rBHqtvkWr-MHd%3DxXw4r8bHtevL3%2B__7HsYKT_c2Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


I want to build dynamic report tool using and postgres and reports are like tables based on locations

2018-12-16 Thread aryan patel
Kindly give me any suggestions or any guidance .

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/75b7165f-4e51-4994-96b2-4482f5b219db%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Creating Reports in Django Admin Panel

2018-06-04 Thread Joseph Mutumi
Hello,

You'll first need to create a custom admin page. Create your view and add
it to the urls.py like normal.

Then you extend the admin base template and display your aggregation in
there:

{% extends "admin/base_site.html" %} {% block title %}Stats title{%
endblock %} {% block content %}Stats HTML{% endblock %}

The you aggregate what you need in the view function and pass that. You'll
need to have the relevant
data counters before hand though. You might want to checkout signals to
implement that?
https://docs.djangoproject.com/en/2.0/topics/signals/

Kind regards

On Sat, Jun 2, 2018 at 6:23 AM, Mukul Mantosh 
wrote:

> How to create a report in  django-admin panel of number of users added to
> the database in a day, week and month. Also, how many API calls for every
> particular API has been made in a day, week and month.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/django-users/cde57aba-e168-4c74-97b9-7e4b3a48458c%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAN5idp9953zu9rF939qTiVxpOMFZGfe6OYxOFZKagOTG%2BMct8A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Creating Reports in Django Admin Panel

2018-06-01 Thread Mukul Mantosh
How to create a report in  django-admin panel of number of users added to 
the database in a day, week and month. Also, how many API calls for every 
particular API has been made in a day, week and month.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/cde57aba-e168-4c74-97b9-7e4b3a48458c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Decrease amount of identical "Email reports"

2017-01-14 Thread Melvyn Sopacua
Hello,

On Monday 09 January 2017 00:53:13 Nacharov Mikhail wrote:

> I have a high load production site. If I make a mistake (some users
> getting 500 error) all ADMINS will be receiving error emails until
> bug won't be fixed.
> This causes email server load and it's quite annoying reading thouse
> idetical emails sometimes. It's also possible to miss anouther error
> report inside a bunch of identical..
> 
> Did somebody know how to decrease amount of identical Email reports?
> <https://docs.djangoproject.com/en/1.10/howto/error-reporting/#email-r
> eports> Maybe set some timeout for the same message subject would be
> correct decision?

Think about this for a sec. One WSGI process (thread) does nothing else but 
handle 
request that comes in, and send the response. How is it supposed to know about 
the 
other requests/responses?

> Maybe there is a better way for monitor web server events?

Plenty. You can get very close to the stack:
http://uwsgi-docs.readthedocs.io/en/latest/LogEncoders.html

To full 3rd-party:
https://docs.newrelic.com/docs/alerts/new-relic-alerts/

There's an entire industry section devoted to this kind of thing. It's best to 
look there 
and not in the web framework. Chances are your admins already have some sort of 
monitoring in place, so look for something that ties in (can be tied in) with 
that.
-- 
Melvyn Sopacua

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7745479.Kx6tzrpK73%40devstation.
For more options, visit https://groups.google.com/d/optout.


Re: Decrease amount of identical "Email reports"

2017-01-09 Thread Sam Walters
Hi
Presumably you have had a look at logging docs and its not good enough?
https://docs.djangoproject.com/en/1.10/topics/logging/

With these sort of project requirements the way i have solved this in the
past is to:
*Work out who needs to receive certain messages. Draw a grid with all
useful messages on one axis and all admins of various types on the other.
Tick the grid boxes for who receives what.
*write a model to save 'messages' with timestamps level/seriousness of
critical errors. Basically whatever you think is important.
*use decorators in views to write/save messages to the 'message' model.
(herein you an add logic to remove duplicates, cascade critical errors
straight into sending to admin email accounts as methods within the model
class whatever your approach might be) Run an email queue every 24 hours
that sends aggregated message groups relevant to each admin.
https://docs.djangoproject.com/en/dev/topics/http/decorators/

Implement this for the most common and annoying duplicate messages to start
with.

Always have an admin of some sort that gets all the critical error messages
eg: say 500 'server error' type messages.

Hope this provides some insight.




On Mon, Jan 9, 2017 at 8:53 AM, Nacharov Mikhail <michael.nacha...@gmail.com
> wrote:

> Hi folks and Happy New Year!
>
> I have a high load production site. If I make a mistake (some users
> getting 500 error) all ADMINS will be receiving error emails until bug
> won't be fixed.
> This causes email server load and it's quite annoying reading thouse
> idetical emails sometimes. It's also possible to miss anouther error report
> inside a bunch of identical..
>
> Did somebody know how to decrease amount of identical Email reports?
> <https://docs.djangoproject.com/en/1.10/howto/error-reporting/#email-reports>
> Maybe set some timeout for the same message subject would be correct
> decision?
>
> Maybe there is a better way for monitor web server events?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/2b54c365-fb9b-4618-89b5-ba88b18e6487%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/2b54c365-fb9b-4618-89b5-ba88b18e6487%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMbLS2_R1Xoz5VkeFhYeW-foKyx-WBiS85ttpzPxC6josO%3DNig%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Decrease amount of identical "Email reports"

2017-01-09 Thread roboslone
Hi! I don't know how to help you with ADMINS notifications, but you can use 
Sentry to collect logs and errors. I believe you could set up notifications 
there as you like.

> On 9 Jan 2017, at 11:53, Nacharov Mikhail <michael.nacha...@gmail.com> wrote:
> 
> Hi folks and Happy New Year!
> 
> I have a high load production site. If I make a mistake (some users getting 
> 500 error) all ADMINS will be receiving error emails until bug won't be fixed.
> This causes email server load and it's quite annoying reading thouse idetical 
> emails sometimes. It's also possible to miss anouther error report inside a 
> bunch of identical..
> 
> Did somebody know how to decrease amount of identical Email reports? 
> <https://docs.djangoproject.com/en/1.10/howto/error-reporting/#email-reports> 
> Maybe set some timeout for the same message subject would be correct decision?
> 
> Maybe there is a better way for monitor web server events?
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com 
> <mailto:django-users+unsubscr...@googlegroups.com>.
> To post to this group, send email to django-users@googlegroups.com 
> <mailto:django-users@googlegroups.com>.
> Visit this group at https://groups.google.com/group/django-users 
> <https://groups.google.com/group/django-users>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/2b54c365-fb9b-4618-89b5-ba88b18e6487%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/django-users/2b54c365-fb9b-4618-89b5-ba88b18e6487%40googlegroups.com?utm_medium=email_source=footer>.
> For more options, visit https://groups.google.com/d/optout 
> <https://groups.google.com/d/optout>.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/14063E2E-DF0C-40D4-92DE-3F4B4D62A634%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Decrease amount of identical "Email reports"

2017-01-09 Thread Nacharov Mikhail
Hi folks and Happy New Year!

I have a high load production site. If I make a mistake (some users getting 
500 error) all ADMINS will be receiving error emails until bug won't be 
fixed.
This causes email server load and it's quite annoying reading thouse 
idetical emails sometimes. It's also possible to miss anouther error report 
inside a bunch of identical..

Did somebody know how to decrease amount of identical Email reports? 
<https://docs.djangoproject.com/en/1.10/howto/error-reporting/#email-reports> 
Maybe set some timeout for the same message subject would be correct 
decision?

Maybe there is a better way for monitor web server events?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/2b54c365-fb9b-4618-89b5-ba88b18e6487%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Github v code.djangoproject for bug reports

2016-02-18 Thread Malik Rumi
Ok, never mind. I had to log in first.




On Thursday, February 18, 2016 at 11:20:19 AM UTC-6, Malik Rumi wrote:
>
> Thanks, but, that link goes to http://goog_1605940378/ and reports:
>
> The server at *goog_1605940378* can't be found, because the DNS lookup 
> failed. DNS is the network service that translates a website's name to its 
> Internet address. This error is most often caused by having no connection 
> to the Internet or a misconfigured network. It can also be caused by an 
> unresponsive DNS server or a firewall preventing Google Chrome from 
> accessing the network.
>
> I tried typing it in by hand, but then it redirected to 
> https://docs.djangoproject.com/en/1.9/
>
>
>
> On Thursday, February 18, 2016 at 10:58:25 AM UTC-6, Tim Graham wrote:
>>
>> Please read https://code.djangoproject.com/newticket 
>> <http://goog_1605940378> for an explanation of what type of issue should 
>> be reported where.
>>
>> On Thursday, February 18, 2016 at 10:41:54 AM UTC-5, Malik Rumi wrote:
>>>
>>> Does it matter if a bug is reported to one and not the other? Is there 
>>> any difference between the two? Do the issue tracking numbers between the 
>>> two line up?
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/fa3dea41-a9cf-4106-98c2-9bdac89ed74a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Github v code.djangoproject for bug reports

2016-02-18 Thread Malik Rumi
Thanks, but, that link goes to http://goog_1605940378/ and reports:

The server at *goog_1605940378* can't be found, because the DNS lookup 
failed. DNS is the network service that translates a website's name to its 
Internet address. This error is most often caused by having no connection 
to the Internet or a misconfigured network. It can also be caused by an 
unresponsive DNS server or a firewall preventing Google Chrome from 
accessing the network.

I tried typing it in by hand, but then it redirected 
to https://docs.djangoproject.com/en/1.9/



On Thursday, February 18, 2016 at 10:58:25 AM UTC-6, Tim Graham wrote:
>
> Please read https://code.djangoproject.com/newticket 
> <http://goog_1605940378> for an explanation of what type of issue should 
> be reported where.
>
> On Thursday, February 18, 2016 at 10:41:54 AM UTC-5, Malik Rumi wrote:
>>
>> Does it matter if a bug is reported to one and not the other? Is there 
>> any difference between the two? Do the issue tracking numbers between the 
>> two line up?
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e6849df9-c1f7-48e1-b50d-a043b36988aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Github v code.djangoproject for bug reports

2016-02-18 Thread Tim Graham
Please read https://code.djangoproject.com/newticket  for 
an explanation of what type of issue should be reported where.

On Thursday, February 18, 2016 at 10:41:54 AM UTC-5, Malik Rumi wrote:
>
> Does it matter if a bug is reported to one and not the other? Is there any 
> difference between the two? Do the issue tracking numbers between the two 
> line up?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/03e3c542-1aae-41b3-9146-9cebdb7e16c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Github v code.djangoproject for bug reports

2016-02-18 Thread Malik Rumi
Does it matter if a bug is reported to one and not the other? Is there any 
difference between the two? Do the issue tracking numbers between the two 
line up?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/94622ce2-0ed0-4c6b-9c5d-dc8a2a947a56%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: reports

2013-12-12 Thread Derek
There is a tutorial here that seems comprehensive:

http://www.geraldoreports.org/docs/tutorial-django.html

Assuming you have something basic going, then its best to ask very specific 
questions - "I tried X (here is my code) and I get this error Y - how to 
solve..."

On Wednesday, 11 December 2013 22:21:28 UTC+2, fabricio wrote:
>
> Can anyone direct me to some tool to report in django using geraldo because 
> I am and I'm having difficulty and do what I need in the reports.
>
>
> graciously
>
> fabricio
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c1de2789-0381-402d-8c68-d95986454623%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


reports

2013-12-11 Thread fabricio
Can anyone direct me to some tool to report in django using geraldo because 
I am and I'm having difficulty and do what I need in the reports.


graciously

fabricio

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3911b21f-4ec6-4fba-93a7-3438a7480199%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Django Inspector - Inspects and reports on Django sites

2013-04-15 Thread Daniele Procida
If like me you're responsible for a large and sprawling site, maintained by 
several dozen users, and you feel you don't know enough about what's going on 
in it you might find  useful.

I discovered a few interesting things the first time I ran it, including some 
fabulous URL paths:

/primary-care-public-health/research/south-east-wales-trials-unit/sewtu-what-we-do/full-sewtu/sewtu-star-trialstudy/sewtu-starinfo/

as well as some obscure pages that I hadn't realised were throwing exceptions.

Daniele

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




Re: Reports

2012-03-16 Thread Alexey Luchko
We are using PDFs.

-- 
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/-/EfQeowVhrBoJ.
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.



Re: Reports

2012-03-06 Thread Derek
I am curious as to why/how you use a reporting tool that does not
support HTML for a web application?

(PS I note that this tool, as in the case of Geraldo, also uses
ReportLab)

On Mar 5, 5:29 pm, Alexey Luchko  wrote:
> Hi!
>
> We are usinghttp://PythonReports.sf.net/.
>
> --
> Regards,
> Alex.

-- 
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.



Re: Reports

2012-03-05 Thread Alexey Luchko

Hi!

We are using http://PythonReports.sf.net/.

--
Regards,
Alex.

--
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.



Re: Reports

2012-03-05 Thread Derek
I plan to use ReportLab and/or Geraldo in an upcoming projects as they
seem to be the best out there.  In response to your criticisms:

ReportLab. "Too low level" which I translate to mean this is a tool
you can customise to do exactly what you want.  In the same way Django
is *not* a CMS and requires "some" work to build any website.

Geraldo. "lacks a few features" - welcome to the wonderful world of
open source.  Someone else has already done a whole chunk of work; now
you can make it even better by adding in those features and
contributing back so the whole community can benefit.

Cheers
Derek

On Mar 5, 1:12 pm, Ahmed Toulan  wrote:
> Hi,
>
> We have a Django website and we would like to have a reporting engine, if
> it could be in python and integrated with Django it would be awesome.
>
> Here are the options I investigated:
>
>    1. Jasper is really promising and has a lot of features, but
>    unfortunately it's Java and I would need to do too much work to integrate
>    it with Django. For instance we will have separate users and user
>    permissions, and we can't share the login sessions.
>    2. ReportLab . Too low level and needs a proper designer. (Am I right?)
>    3. Geraldo. Greate, but lacks a few features that we need.
>
> My goal is to have a unified experience for my users (where they don't even
> know that we have a reporting engine). Users and user permissions should be
> managed in one place (Django side of course)
>
> I want to know what everybody else is using.
>
> Thanks for your time.

-- 
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.



Reports

2012-03-05 Thread Ahmed Toulan
Hi,

We have a Django website and we would like to have a reporting engine, if 
it could be in python and integrated with Django it would be awesome.

Here are the options I investigated:

   1. Jasper is really promising and has a lot of features, but 
   unfortunately it's Java and I would need to do too much work to integrate 
   it with Django. For instance we will have separate users and user 
   permissions, and we can't share the login sessions. 
   2. ReportLab . Too low level and needs a proper designer. (Am I right?)
   3. Geraldo. Greate, but lacks a few features that we need.
   
My goal is to have a unified experience for my users (where they don't even 
know that we have a reporting engine). Users and user permissions should be 
managed in one place (Django side of course)

I want to know what everybody else is using.

Thanks for your time.

-- 
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/-/YeQ-6wCtbR0J.
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.



Re: I need to do reports, and I would like reports that are integrated with django admin.

2011-07-05 Thread Venkatraman S
On Wed, Jul 6, 2011 at 3:23 AM, Kase <dark.k...@gmail.com> wrote:

>
> I have no problem to make my pages with reports of objects, but I like
> that are integrated with django admin, in the same tuple in the object
> list.
>
> any suggestions?
>

Did you try creating a page and showing the information there - for eg. you
could create a link called 'Reports' on the top right of the page
and (after you extend the admin-base html file),  include the necessary
logic in the views.

-V
http://twitter.com/venkasub

-- 
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.



I need to do reports, and I would like reports that are integrated with django admin.

2011-07-05 Thread Kase

I have no problem to make my pages with reports of objects, but I like
that are integrated with django admin, in the same tuple in the object
list.

i dont know if exist extention, but one of these reports is complex
= /

I have an object, insurance, customer, policy, policy_year

and a i need a report containing the information of the client
relationship, policies (foreign key (customer)) policy_year (foreign
key (policy))

and display somthing like this

Customer: jon doo
Policy: x
2009
2010
2011
POLICY AND
2008
2009

I would like to make it accessible from the list of objects "customer"

PS: i know how to display this info in to view + template but really i
like to display in django admin ...

any suggestions?

-- 
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.



Adding information to error reports

2010-04-09 Thread Steve Holden
What's easiest way to ensure that further data is displayed as a part of
the emails sent after a server error? Some of the data would be present
in all requests, some might only be available for particular requests.

regards
 Steve

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



Re: News about Geraldo Reports

2010-01-28 Thread Stodge
I can't visit your site from work anyway:

Reason/Raison:
The Websense category "Potentially Damaging Content" is filtered.


:P

On Jan 26, 3:42 am, Marinho Brandao <mari...@gmail.com> wrote:
> Hello people,
>
> I have good news :)
>
> I've done today the new website of Geraldo Reports [1].
>
> Geraldo is a tool to make business reports easy, that not necessarily
> will be PDF files. For a while it just supports PDF and TXT (for file
> and matrix printers), but in the future it will supports HTML, ODF,
> DOC, XLS, and whatever. It uses the power of ReportLab to make PDF
> files and uses also some things from its library.
>
> Geraldo doesn't competes with ReportLab, it is just more like Jasper
> or Crystal Reports, ok?
>
> The new website is more like a redesign of the old one, but we want to
> have cook book, code snippets and report templates repositories as
> soon as possible.
>
> We are near to announce the release 0.4 (maybe in 1 or 2 weeks), with
> the main features:
>
> - Caching
> - Additional fonts
> - Events system
> - "Native" charts (using ReportLab functions instead of third part libraries)
> - Cross reference tables
> - Bar codes
> - bugs fixes
>
> Most of these features are already available [2] on the git/svn
> repositories [3] and [4] and I'm using them on some projects.
>
> Another important information: I recently knew about a project named
> "django-reporting" [5], that makes summaries on the Admin (with no
> printing). It is a good tool but a customer mine would like print
> those summaries to PDF, so, I made some improvements on it to do it
> (and sent a patch). I'm trying to make contact the author to make this
> easier.
>
> The problem: Geraldo already had in their repositories a Django app to
> integrate Geraldo with Django's Admin.
>
> Solution: I probably will change the name of Geraldo's "reporting", do
> some newness I have on my machine, etc.
>
> But, to avoid confusion: django-reporting and Geraldo's "reporting"
> are separated things and have different goals.
>
> In the future, Geraldo will have the Reports Server, probably a
> pluggable app or a Tornado service (I'm not sure about that), to serve
> reports like a BI framework. It will get data from database connection
> (with SQL instructions) or NoSQL accessing or, at least, receive data
> as a webservice, and generate reports. The main goal is take easy the
> integration with other languages and take easy for end users. The
> ideas are in my mind, but will late a little.
>
> That's all. Help is very very welcome, whatever you can do to help.
>
> Best regards, speak soon :)
>
> [1]http://www.geraldoreports.org/
> [2]http://www.geraldoreports.org/docs/examples/index.html
> [3]http://www.geraldoreports.org/docs/examples/index.html
> [4]http://geraldo.svn.sourceforge.net/viewvc/geraldo/
> [5]http://code.google.com/p/django-reporting/
>
> --
> Marinho Brandão (José Mário)http://marinhobrandao.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



[Announcing] News about Geraldo Reports

2010-01-26 Thread Marinho Brandao
Hello people,

I have good news :)

I've done today the new website of Geraldo Reports [1].

Geraldo is a tool to make business reports easy, that not necessarily
will be PDF files. For a while it just supports PDF and TXT (for file
and matrix printers), but in the future it will supports HTML, ODF,
DOC, XLS, and whatever. It uses the power of ReportLab to make PDF
files and uses also some things from its library.

Geraldo doesn't competes with ReportLab, it is just more like Jasper
or Crystal Reports, ok?

The new website is more like a redesign of the old one, but we want to
have cook book, code snippets and report templates repositories as
soon as possible.

We are near to announce the release 0.4 (maybe in 1 or 2 weeks), with
the main features:

- Caching
- Additional fonts
- Events system
- "Native" charts (using ReportLab functions instead of third part libraries)
- Cross reference tables
- Bar codes
- bugs fixes

Most of these features are already available [2] on the git/svn
repositories [3] and [4] and I'm using them on some projects.

Another important information: I recently knew about a project named
"django-reporting" [5], that makes summaries on the Admin (with no
printing). It is a good tool but a customer mine would like print
those summaries to PDF, so, I made some improvements on it to do it
(and sent a patch). I'm trying to make contact the author to make this
easier.

The problem: Geraldo already had in their repositories a Django app to
integrate Geraldo with Django's Admin.

Solution: I probably will change the name of Geraldo's "reporting", do
some newness I have on my machine, etc.

But, to avoid confusion: django-reporting and Geraldo's "reporting"
are separated things and have different goals.

In the future, Geraldo will have the Reports Server, probably a
pluggable app or a Tornado service (I'm not sure about that), to serve
reports like a BI framework. It will get data from database connection
(with SQL instructions) or NoSQL accessing or, at least, receive data
as a webservice, and generate reports. The main goal is take easy the
integration with other languages and take easy for end users. The
ideas are in my mind, but will late a little.

That's all. Help is very very welcome, whatever you can do to help.

Best regards, speak soon :)

[1] http://www.geraldoreports.org/
[2] http://www.geraldoreports.org/docs/examples/index.html
[3] http://www.geraldoreports.org/docs/examples/index.html
[4] http://geraldo.svn.sourceforge.net/viewvc/geraldo/
[5] http://code.google.com/p/django-reporting/



-- 
Marinho Brandão (José Mário)
http://marinhobrandao.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



Re: upgraded to python2.5, but error-reports/traceback still references python2.3?

2009-08-07 Thread Daniel Roseman

On Aug 7, 5:45 pm, Cody Django  wrote:
> This is weird: I used to use python2.3 on the mediatemple server, but
> recently upgraded to python2.5.  I've also installed mysqldb, pil, ect
> under python2.5.  I've updated my pythonpath so the python2.5 route is
> being used.  Everything works just fine, but I've noticed in the
> traceback that python2.3 is still being referenced.
>
> For example:
>
>  File "/usr/lib/python2.3/site-packages/django/core/handlers/base.py",
> line 92, in get_response
>    response = callback(request, *callback_args, **callback_kwargs)
>
> Could there still be a cache that is holding the old paths?  How can I
> completely rid django of python2.3?
>
> Thanks.
>
> Cody
>
> ps.  I never told modpython to use python2.5, but apparently python
> itself updates which version of python to use when you install a new
> version.  So I hear.

No, this isn't true. mod_python is compiled with a specific version of
Python, and will only use that version. So you'd need a new version of
mod_python for version 2.5.
--
DR.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



upgraded to python2.5, but error-reports/traceback still references python2.3?

2009-08-07 Thread Cody Django

This is weird: I used to use python2.3 on the mediatemple server, but
recently upgraded to python2.5.  I've also installed mysqldb, pil, ect
under python2.5.  I've updated my pythonpath so the python2.5 route is
being used.  Everything works just fine, but I've noticed in the
traceback that python2.3 is still being referenced.

For example:

 File "/usr/lib/python2.3/site-packages/django/core/handlers/base.py",
line 92, in get_response
   response = callback(request, *callback_args, **callback_kwargs)

Could there still be a cache that is holding the old paths?  How can I
completely rid django of python2.3?

Thanks.

Cody


ps.  I never told modpython to use python2.5, but apparently python
itself updates which version of python to use when you install a new
version.  So I hear.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Geraldo - reports engine

2009-01-19 Thread Marinho Brandao

Hi folks,

I am working in a reports engine, with name "Geraldo". It is working
well and I will finish the missing things for a first version tonight
or tomorrows night.

Its repository is here:

- http://github.com/marinho/django-geraldo/

For a while it is generating only PDF, is a ReportLab and PIL
dependent and supports the most important things in reports:

- report top/begin band
- report summary
- page header
- page footer
- detail band
- child bands attaching
- aggregations
- visible/invisible bands and elements
- system variables
- calculated/expression fields
- margins/page sizes
- basic graphic canvas elements (circles, ellipses, PIL or file
images, arcs, lines, etc)
- elements style
- and so on

there are two missing things to have a first good API:

- subreports
- groupping

tests with example codes and PDFs are in the folter "tests" in the
latest commit, here for example:

- 
http://github.com/marinho/django-geraldo/tree/8e2c7f344957d1c85a4ee59b949fabe5d6ca9e59/geraldo/tests

in future I want to make HTML and other formats generation and maybe a
GUI editor, like iReport.

bugs reporting, suggestions and contributing are welcome :) hugs

-- 
Marinho Brandão (José Mário)
http://marinhobrandao.com/

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Data portal (reports website) with Django?

2008-07-14 Thread falcon

Hi,
I need to build a corporate site which displays various numbers,
statistics and metrics for decision makers.  Basically a decision
support system or even the kind of stuff crystal reports is used for.

Typically, we have built 'reports' that display specific data.  Each
report is made up of one or more sql queries and an html page (put
together by some sort of application server.

I'd like create a few simple data presentation templates, but drive
them using sql which, itself, sits in the database.  This way, I can
just use Django's admin interface, insert an sql query.  As soon as I
hit the save button, the report will show up.

Please note that something like databrowse doesn't help my very much
(afaik) since my queries may be fairly complex, rather than simple
listings of my database tables.

I wrote such a framework a long time ago with an older version of
django.  I could parametrize my sql queries (with parameters passed in
through urls), automatically generate menus, etc.

The idea is that once I have a quick framework up, adding reports
should be trivial enough that I (or someone else with enough
permission) can add reports within give minutes.

As our needs expand, we can expand presentation templates (which may
take half a day to much longer) with charts, fancy sorting, pivoting,
filtering, aggregating tables...whatever.

Other than custom building this again, is there anything new in django
which might help me with this project?

Thanks
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Reports

2008-04-02 Thread Alagu Madhu

rlib.sicompos.com

http://www.htmltopdf.org/

http://openreport.org/index.py/static/page/docs



On Apr 2, 2:51 pm, "Marinho Brandao" <[EMAIL PROTECTED]> wrote:
> Sorry, I sent to wrong user group
>
> 2008/4/2, Marinho Brandao <[EMAIL PROTECTED]>:
>
>
>
> > Olá,
>
> >  para geração de gráficos, dê uma olhadinha aqui também:
>
> >  http://marinho.webdoisonline.com/blog/p/136/
>
> >  2008/3/27, Justin Lilly <[EMAIL PROTECTED]>:
>
> > > Django handles it as well as Python.
>
> >  > Here are some resources I would suggest checking out:
> >  >   report lab:http://www.reportlab.org/index.html
> >  >   google charts:http://toys.jacobian.org/hg/googlecharts/
> >  > and
> >  >http://toys.jacobian.org/hg/googlecharts/raw-file/tip/docs/examples.html
> >  > (examples)
> >  >   django-graphs:http://code.google.com/p/django-graphs/
>
> >  >  -justin
>
> >  > On Thu, Mar 27, 2008 at 4:03 PM, Percy Gonzales <[EMAIL PROTECTED]>
> >  > wrote:
>
> >  > > Hello, as Django's handling of the issue:
> >  > > * Generate reports PDF
> >  > > * Graphics statistics (bars, cakes ,...)
>
> >  > > Thanks
>
> >  > > Percy
>
> >  > --
> >  > Justin Lilly
> >  > Web Developer/Designer
> >  >http://justinlilly.com
>
> > --
> >  Marinho Brandão (José Mário)
> >  http://marinho.webdoisonline.com/
>
> --
> Marinho Brandão (José Mário)http://marinho.webdoisonline.com/
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Reports

2008-04-02 Thread Marinho Brandao

Sorry, I sent to wrong user group

2008/4/2, Marinho Brandao <[EMAIL PROTECTED]>:
> Olá,
>
>  para geração de gráficos, dê uma olhadinha aqui também:
>
>  http://marinho.webdoisonline.com/blog/p/136/
>
>  2008/3/27, Justin Lilly <[EMAIL PROTECTED]>:
>
> > Django handles it as well as Python.
>  >
>  > Here are some resources I would suggest checking out:
>  >   report lab: http://www.reportlab.org/index.html
>  >   google charts: http://toys.jacobian.org/hg/googlecharts/
>  > and
>  > http://toys.jacobian.org/hg/googlecharts/raw-file/tip/docs/examples.html
>  > (examples)
>  >   django-graphs: http://code.google.com/p/django-graphs/
>  >
>  >  -justin
>  >
>  > On Thu, Mar 27, 2008 at 4:03 PM, Percy Gonzales <[EMAIL PROTECTED]>
>  > wrote:
>  >
>  > >
>  > > Hello, as Django's handling of the issue:
>  > > * Generate reports PDF
>  > > * Graphics statistics (bars, cakes ,...)
>  > >
>  > >
>  > > Thanks
>  > >
>  > > Percy
>  > >
>  > >
>  > >
>  >
>  >
>  >
>  > --
>  > Justin Lilly
>  > Web Developer/Designer
>  > http://justinlilly.com
>  >
>  >  >  >
>  >
>
>
>
> --
>  Marinho Brandão (José Mário)
>  http://marinho.webdoisonline.com/
>


-- 
Marinho Brandão (José Mário)
http://marinho.webdoisonline.com/

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Reports

2008-04-02 Thread Marinho Brandao

Olá,

para geração de gráficos, dê uma olhadinha aqui também:

http://marinho.webdoisonline.com/blog/p/136/

2008/3/27, Justin Lilly <[EMAIL PROTECTED]>:
> Django handles it as well as Python.
>
> Here are some resources I would suggest checking out:
>   report lab: http://www.reportlab.org/index.html
>   google charts: http://toys.jacobian.org/hg/googlecharts/
> and
> http://toys.jacobian.org/hg/googlecharts/raw-file/tip/docs/examples.html
> (examples)
>   django-graphs: http://code.google.com/p/django-graphs/
>
>  -justin
>
> On Thu, Mar 27, 2008 at 4:03 PM, Percy Gonzales <[EMAIL PROTECTED]>
> wrote:
>
> >
> > Hello, as Django's handling of the issue:
> > * Generate reports PDF
> > * Graphics statistics (bars, cakes ,...)
> >
> >
> > Thanks
> >
> > Percy
> >
> >
> >
>
>
>
> --
> Justin Lilly
> Web Developer/Designer
> http://justinlilly.com
>
>  >
>


-- 
Marinho Brandão (José Mário)
http://marinho.webdoisonline.com/

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Reports

2008-03-27 Thread Justin Lilly
Django handles it as well as Python.
Here are some resources I would suggest checking out:
  report lab: http://www.reportlab.org/index.html
  google charts: http://toys.jacobian.org/hg/googlecharts/ and
http://toys.jacobian.org/hg/googlecharts/raw-file/tip/docs/examples.html(examples)
  django-graphs: http://code.google.com/p/django-graphs/

 -justin

On Thu, Mar 27, 2008 at 4:03 PM, Percy Gonzales <[EMAIL PROTECTED]>
wrote:

>
> Hello, as Django's handling of the issue:
> * Generate reports PDF
> * Graphics statistics (bars, cakes ,...)
>
>
> Thanks
>
> Percy
>
> >
>


-- 
Justin Lilly
Web Developer/Designer
http://justinlilly.com

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Reports

2008-03-27 Thread Percy Gonzales

Hello, as Django's handling of the issue:
* Generate reports PDF
* Graphics statistics (bars, cakes ,...)


Thanks

Percy

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-06 Thread Ben Ford
Hi again guys,
I've created a google code project called
django-reports<http://code.google.com/p/django-reports/>to share my
work thus far. As I mention on the welcome page, it's far from
complete, but it all works on my machine. I'll try and whip up some
documentation ASAP to help people get up and running, for now though just
read the source and IPython :-). Priorities are getting a reasonable
filtering mechanism together to make the user interface workable (and easy),
and to make up some tests. Please feel free to email me with any and all
questions/suggestions. I hope you all find it useful and that we can work
together to get it production ready! Mir, email me off list and I'll give
you the https password so you can access it too. I will also let Carole and
Toby know about this so that maybe we can explore reportlab and R
integration respectively.
Cheers,
Ben

On 06/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
>
> Cool cool cool
>
> We will be waiting.
>
> One request, I am unable to access the svn with http protocol due my
> ISP not ready to configure its Firewall to allow all http methods. So
> could you please set it up under https or svn+ssh
>
> Thanks
>
> On Aug 6, 6:47 am, "Ben Ford" <[EMAIL PROTECTED]> wrote:
> > Hi guys,
> > Thanks for the interest! I'll split it up from my main app and put it
> into
> > SVN on my server. I'd really like comments on some of the design
> decisions
> > I've made, I was thinking about it last night and I think I may have got
> a
> > bit too clever! I'll post on here when I've got everything figured. :-)
> > Ben
> >
> > On 05/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> >
> >
> > > Ho ho,
> >
> > > Its generating a lot of interest.
> >
> > > On Aug 4, 3:18 pm, "Chris Hoeppner" <[EMAIL PROTECTED]> wrote:
> > > > Need another tester? Count me in.
> >
> > > > 2007/8/4, Mir Nazim < [EMAIL PROTECTED]>:
> >
> > > > > Me too me too.
> >
> > > > > Ben, Let us know if you need help with testing or some thing else.
> > > > > I will more interested in Models and View than template.
> >
> > > > > On Aug 3, 11:51 am, "Matt Davies" <[EMAIL PROTECTED]> wrote:
> > > > > > Ben, I'd be interested in looking at that application.
> >
> > > > > > Need someone to help with testing?
> >
> > > > > > On 03/08/07, Ben Ford <[EMAIL PROTECTED]> wrote:
> >
> > > > > > > I'm working on a django app at the moment that allows you to
> > > define and
> > > > > > > save reports. It has a method similar to templatetags for
> loading
> > > user
> > > > > > > defined functions to add to the reports too. As it stands you
> can
> > > build and
> > > > > > > save these reports with a web front end, and download the
> results
> > > in CSV. I
> > > > > > > just need to write a front end for creating filters and it'll
> be
> > > good to go.
> > > > > > > I'll be happy to release it for the benefit of others when
> it's
> > > done.
> > > > > > > Ben
> >
> > > > > > > On 03/08/07, Mir Nazim < [EMAIL PROTECTED]> wrote:
> >
> > > > > > > > I understand that views need to be created. I am doing that
> > > these
> > > > > > > > days.
> >
> > > > > > > > What specifically I wanted to know is whether anyone else
> has
> > > worked
> > > > > > > > on a similar stuff. So he might want to share his
> experience.
> >
> > > > > > > > BRIT is Java. I would prefer something more python based
> > > solution.
> > > > > > > > even better is there is a django based one. If there is
> none,
> > > its
> > > > > > > > obvious I will have to create one.
> >
> > > > > > > > On Aug 2, 8:20 pm, Lucky B < [EMAIL PROTECTED] >
> wrote:
> > > > > > > > > You could try Eclipse BIRT for a WYSIWYG interface. But
> > > otherwise you
> > > > > > > > > can create a view however you want to report your data
> doing
> > > whatever
> > > > > > > > > manipulation you wanted. I don't see what else you would
> need
> > > other
> > > > > > > > >

Re: Something like a mini Crystal Reports with Django

2007-08-05 Thread Mir Nazim

Cool cool cool

We will be waiting.

One request, I am unable to access the svn with http protocol due my
ISP not ready to configure its Firewall to allow all http methods. So
could you please set it up under https or svn+ssh

Thanks

On Aug 6, 6:47 am, "Ben Ford" <[EMAIL PROTECTED]> wrote:
> Hi guys,
> Thanks for the interest! I'll split it up from my main app and put it into
> SVN on my server. I'd really like comments on some of the design decisions
> I've made, I was thinking about it last night and I think I may have got a
> bit too clever! I'll post on here when I've got everything figured. :-)
> Ben
>
> On 05/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Ho ho,
>
> > Its generating a lot of interest.
>
> > On Aug 4, 3:18 pm, "Chris Hoeppner" <[EMAIL PROTECTED]> wrote:
> > > Need another tester? Count me in.
>
> > > 2007/8/4, Mir Nazim <[EMAIL PROTECTED]>:
>
> > > > Me too me too.
>
> > > > Ben, Let us know if you need help with testing or some thing else.
> > > > I will more interested in Models and View than template.
>
> > > > On Aug 3, 11:51 am, "Matt Davies" <[EMAIL PROTECTED]> wrote:
> > > > > Ben, I'd be interested in looking at that application.
>
> > > > > Need someone to help with testing?
>
> > > > > On 03/08/07, Ben Ford <[EMAIL PROTECTED]> wrote:
>
> > > > > > I'm working on a django app at the moment that allows you to
> > define and
> > > > > > save reports. It has a method similar to templatetags for loading
> > user
> > > > > > defined functions to add to the reports too. As it stands you can
> > build and
> > > > > > save these reports with a web front end, and download the results
> > in CSV. I
> > > > > > just need to write a front end for creating filters and it'll be
> > good to go.
> > > > > > I'll be happy to release it for the benefit of others when it's
> > done.
> > > > > > Ben
>
> > > > > > On 03/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > > > > > I understand that views need to be created. I am doing that
> > these
> > > > > > > days.
>
> > > > > > > What specifically I wanted to know is whether anyone else has
> > worked
> > > > > > > on a similar stuff. So he might want to share his experience.
>
> > > > > > > BRIT is Java. I would prefer something more python based
> > solution.
> > > > > > > even better is there is a django based one. If there is none,
> > its
> > > > > > > obvious I will have to create one.
>
> > > > > > > On Aug 2, 8:20 pm, Lucky B < [EMAIL PROTECTED]> wrote:
> > > > > > > > You could try Eclipse BIRT for a WYSIWYG interface. But
> > otherwise you
> > > > > > > > can create a view however you want to report your data doing
> > whatever
> > > > > > > > manipulation you wanted. I don't see what else you would need
> > other
> > > > > > > > than to create a view.
>
> > > > > > > > On Aug 2, 5:17 am, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > > Anybody has any views on this.
>
> > > > > > > > > --
> > > > > > > > > PS: posting just to keep this topic fresh
>
> > > > > > > > > On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > > > Hello
>
> > > > > > > > > > I was wondering has anybody done application that was
> > something
> > > > > > > like a
> > > > > > > > > > mini crystal reports. Generating a report based of model
> > items
> > > > > > > > > > selected in a WYSIWYG(ok this is not important)
> > fashion.  And
> > > > > > > > > > generating a HTML tables based report with defined
> > calculations
> > > > > > > etc.
>
> > > > > > > > > > I understand that Django Admin has some kind of similar
> > > > > > > facilities. I
> > > > > > > > > > am looking into them. In the mean time thought that may be
> > some
> > > > > > > one
> > > > > > > > > > else might be doing similar stuff somewhere.
>
> > > > > > --
> > > > > > Regards,
> > > > > > Ben Ford
> > > > > > [EMAIL PROTECTED]
> > > > > > +628111880346
>
> > > --
> > > Best Regards,
> > > Chris Hoeppner -www.pixware.org//My weblog
>
> --
> Regards,
> Ben Ford
> [EMAIL PROTECTED]
> +628111880346


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-05 Thread Ben Ford
Hi guys,
Thanks for the interest! I'll split it up from my main app and put it into
SVN on my server. I'd really like comments on some of the design decisions
I've made, I was thinking about it last night and I think I may have got a
bit too clever! I'll post on here when I've got everything figured. :-)
Ben

On 05/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
>
> Ho ho,
>
> Its generating a lot of interest.
>
> On Aug 4, 3:18 pm, "Chris Hoeppner" <[EMAIL PROTECTED]> wrote:
> > Need another tester? Count me in.
> >
> > 2007/8/4, Mir Nazim <[EMAIL PROTECTED]>:
> >
> >
> >
> >
> >
> > > Me too me too.
> >
> > > Ben, Let us know if you need help with testing or some thing else.
> > > I will more interested in Models and View than template.
> >
> > > On Aug 3, 11:51 am, "Matt Davies" <[EMAIL PROTECTED]> wrote:
> > > > Ben, I'd be interested in looking at that application.
> >
> > > > Need someone to help with testing?
> >
> > > > On 03/08/07, Ben Ford <[EMAIL PROTECTED]> wrote:
> >
> > > > > I'm working on a django app at the moment that allows you to
> define and
> > > > > save reports. It has a method similar to templatetags for loading
> user
> > > > > defined functions to add to the reports too. As it stands you can
> build and
> > > > > save these reports with a web front end, and download the results
> in CSV. I
> > > > > just need to write a front end for creating filters and it'll be
> good to go.
> > > > > I'll be happy to release it for the benefit of others when it's
> done.
> > > > > Ben
> >
> > > > > On 03/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> > > > > > I understand that views need to be created. I am doing that
> these
> > > > > > days.
> >
> > > > > > What specifically I wanted to know is whether anyone else has
> worked
> > > > > > on a similar stuff. So he might want to share his experience.
> >
> > > > > > BRIT is Java. I would prefer something more python based
> solution.
> > > > > > even better is there is a django based one. If there is none,
> its
> > > > > > obvious I will have to create one.
> >
> > > > > > On Aug 2, 8:20 pm, Lucky B < [EMAIL PROTECTED]> wrote:
> > > > > > > You could try Eclipse BIRT for a WYSIWYG interface. But
> otherwise you
> > > > > > > can create a view however you want to report your data doing
> whatever
> > > > > > > manipulation you wanted. I don't see what else you would need
> other
> > > > > > > than to create a view.
> >
> > > > > > > On Aug 2, 5:17 am, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> > > > > > > > Anybody has any views on this.
> >
> > > > > > > > --
> > > > > > > > PS: posting just to keep this topic fresh
> >
> > > > > > > > On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> > > > > > > > > Hello
> >
> > > > > > > > > I was wondering has anybody done application that was
> something
> > > > > > like a
> > > > > > > > > mini crystal reports. Generating a report based of model
> items
> > > > > > > > > selected in a WYSIWYG(ok this is not important)
> fashion.  And
> > > > > > > > > generating a HTML tables based report with defined
> calculations
> > > > > > etc.
> >
> > > > > > > > > I understand that Django Admin has some kind of similar
> > > > > > facilities. I
> > > > > > > > > am looking into them. In the mean time thought that may be
> some
> > > > > > one
> > > > > > > > > else might be doing similar stuff somewhere.
> >
> > > > > --
> > > > > Regards,
> > > > > Ben Ford
> > > > > [EMAIL PROTECTED]
> > > > > +628111880346
> >
> > --
> > Best Regards,
> > Chris Hoeppner -www.pixware.org// My weblog
>
>
> >
>


-- 
Regards,
Ben Ford
[EMAIL PROTECTED]
+628111880346

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-05 Thread Mir Nazim

Ho ho,

Its generating a lot of interest.

On Aug 4, 3:18 pm, "Chris Hoeppner" <[EMAIL PROTECTED]> wrote:
> Need another tester? Count me in.
>
> 2007/8/4, Mir Nazim <[EMAIL PROTECTED]>:
>
>
>
>
>
> > Me too me too.
>
> > Ben, Let us know if you need help with testing or some thing else.
> > I will more interested in Models and View than template.
>
> > On Aug 3, 11:51 am, "Matt Davies" <[EMAIL PROTECTED]> wrote:
> > > Ben, I'd be interested in looking at that application.
>
> > > Need someone to help with testing?
>
> > > On 03/08/07, Ben Ford <[EMAIL PROTECTED]> wrote:
>
> > > > I'm working on a django app at the moment that allows you to define and
> > > > save reports. It has a method similar to templatetags for loading user
> > > > defined functions to add to the reports too. As it stands you can build 
> > > > and
> > > > save these reports with a web front end, and download the results in 
> > > > CSV. I
> > > > just need to write a front end for creating filters and it'll be good 
> > > > to go.
> > > > I'll be happy to release it for the benefit of others when it's done.
> > > > Ben
>
> > > > On 03/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > > > I understand that views need to be created. I am doing that these
> > > > > days.
>
> > > > > What specifically I wanted to know is whether anyone else has worked
> > > > > on a similar stuff. So he might want to share his experience.
>
> > > > > BRIT is Java. I would prefer something more python based solution.
> > > > > even better is there is a django based one. If there is none, its
> > > > > obvious I will have to create one.
>
> > > > > On Aug 2, 8:20 pm, Lucky B < [EMAIL PROTECTED]> wrote:
> > > > > > You could try Eclipse BIRT for a WYSIWYG interface. But otherwise 
> > > > > > you
> > > > > > can create a view however you want to report your data doing 
> > > > > > whatever
> > > > > > manipulation you wanted. I don't see what else you would need other
> > > > > > than to create a view.
>
> > > > > > On Aug 2, 5:17 am, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > > > > > Anybody has any views on this.
>
> > > > > > > --
> > > > > > > PS: posting just to keep this topic fresh
>
> > > > > > > On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > Hello
>
> > > > > > > > I was wondering has anybody done application that was something
> > > > > like a
> > > > > > > > mini crystal reports. Generating a report based of model items
> > > > > > > > selected in a WYSIWYG(ok this is not important) fashion.  And
> > > > > > > > generating a HTML tables based report with defined calculations
> > > > > etc.
>
> > > > > > > > I understand that Django Admin has some kind of similar
> > > > > facilities. I
> > > > > > > > am looking into them. In the mean time thought that may be some
> > > > > one
> > > > > > > > else might be doing similar stuff somewhere.
>
> > > > --
> > > > Regards,
> > > > Ben Ford
> > > > [EMAIL PROTECTED]
> > > > +628111880346
>
> --
> Best Regards,
> Chris Hoeppner -www.pixware.org// My weblog


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-04 Thread Chris Hoeppner

Need another tester? Count me in.

2007/8/4, Mir Nazim <[EMAIL PROTECTED]>:
>
> Me too me too.
>
> Ben, Let us know if you need help with testing or some thing else.
> I will more interested in Models and View than template.
>
>
>
> On Aug 3, 11:51 am, "Matt Davies" <[EMAIL PROTECTED]> wrote:
> > Ben, I'd be interested in looking at that application.
> >
> > Need someone to help with testing?
> >
> > On 03/08/07, Ben Ford <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> > > I'm working on a django app at the moment that allows you to define and
> > > save reports. It has a method similar to templatetags for loading user
> > > defined functions to add to the reports too. As it stands you can build 
> > > and
> > > save these reports with a web front end, and download the results in CSV. 
> > > I
> > > just need to write a front end for creating filters and it'll be good to 
> > > go.
> > > I'll be happy to release it for the benefit of others when it's done.
> > > Ben
> >
> > > On 03/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> > > > I understand that views need to be created. I am doing that these
> > > > days.
> >
> > > > What specifically I wanted to know is whether anyone else has worked
> > > > on a similar stuff. So he might want to share his experience.
> >
> > > > BRIT is Java. I would prefer something more python based solution.
> > > > even better is there is a django based one. If there is none, its
> > > > obvious I will have to create one.
> >
> > > > On Aug 2, 8:20 pm, Lucky B < [EMAIL PROTECTED]> wrote:
> > > > > You could try Eclipse BIRT for a WYSIWYG interface. But otherwise you
> > > > > can create a view however you want to report your data doing whatever
> > > > > manipulation you wanted. I don't see what else you would need other
> > > > > than to create a view.
> >
> > > > > On Aug 2, 5:17 am, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> > > > > > Anybody has any views on this.
> >
> > > > > > --
> > > > > > PS: posting just to keep this topic fresh
> >
> > > > > > On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> > > > > > > Hello
> >
> > > > > > > I was wondering has anybody done application that was something
> > > > like a
> > > > > > > mini crystal reports. Generating a report based of model items
> > > > > > > selected in a WYSIWYG(ok this is not important) fashion.  And
> > > > > > > generating a HTML tables based report with defined calculations
> > > > etc.
> >
> > > > > > > I understand that Django Admin has some kind of similar
> > > > facilities. I
> > > > > > > am looking into them. In the mean time thought that may be some
> > > > one
> > > > > > > else might be doing similar stuff somewhere.
> >
> > > --
> > > Regards,
> > > Ben Ford
> > > [EMAIL PROTECTED]
> > > +628111880346
>
>
> >
>


-- 
Best Regards,
Chris Hoeppner - www.pixware.org // My weblog

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-04 Thread Mir Nazim

Me too me too.

Ben, Let us know if you need help with testing or some thing else.
I will more interested in Models and View than template.



On Aug 3, 11:51 am, "Matt Davies" <[EMAIL PROTECTED]> wrote:
> Ben, I'd be interested in looking at that application.
>
> Need someone to help with testing?
>
> On 03/08/07, Ben Ford <[EMAIL PROTECTED]> wrote:
>
>
>
> > I'm working on a django app at the moment that allows you to define and
> > save reports. It has a method similar to templatetags for loading user
> > defined functions to add to the reports too. As it stands you can build and
> > save these reports with a web front end, and download the results in CSV. I
> > just need to write a front end for creating filters and it'll be good to go.
> > I'll be happy to release it for the benefit of others when it's done.
> > Ben
>
> > On 03/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > I understand that views need to be created. I am doing that these
> > > days.
>
> > > What specifically I wanted to know is whether anyone else has worked
> > > on a similar stuff. So he might want to share his experience.
>
> > > BRIT is Java. I would prefer something more python based solution.
> > > even better is there is a django based one. If there is none, its
> > > obvious I will have to create one.
>
> > > On Aug 2, 8:20 pm, Lucky B < [EMAIL PROTECTED]> wrote:
> > > > You could try Eclipse BIRT for a WYSIWYG interface. But otherwise you
> > > > can create a view however you want to report your data doing whatever
> > > > manipulation you wanted. I don't see what else you would need other
> > > > than to create a view.
>
> > > > On Aug 2, 5:17 am, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > > > Anybody has any views on this.
>
> > > > > --
> > > > > PS: posting just to keep this topic fresh
>
> > > > > On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > > > > Hello
>
> > > > > > I was wondering has anybody done application that was something
> > > like a
> > > > > > mini crystal reports. Generating a report based of model items
> > > > > > selected in a WYSIWYG(ok this is not important) fashion.  And
> > > > > > generating a HTML tables based report with defined calculations
> > > etc.
>
> > > > > > I understand that Django Admin has some kind of similar
> > > facilities. I
> > > > > > am looking into them. In the mean time thought that may be some
> > > one
> > > > > > else might be doing similar stuff somewhere.
>
> > --
> > Regards,
> > Ben Ford
> > [EMAIL PROTECTED]
> > +628111880346


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-03 Thread Matt Davies
Ben, I'd be interested in looking at that application.

Need someone to help with testing?



On 03/08/07, Ben Ford <[EMAIL PROTECTED]> wrote:
>
> I'm working on a django app at the moment that allows you to define and
> save reports. It has a method similar to templatetags for loading user
> defined functions to add to the reports too. As it stands you can build and
> save these reports with a web front end, and download the results in CSV. I
> just need to write a front end for creating filters and it'll be good to go.
> I'll be happy to release it for the benefit of others when it's done.
> Ben
>
> On 03/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> >
> > I understand that views need to be created. I am doing that these
> > days.
> >
> > What specifically I wanted to know is whether anyone else has worked
> > on a similar stuff. So he might want to share his experience.
> >
> > BRIT is Java. I would prefer something more python based solution.
> > even better is there is a django based one. If there is none, its
> > obvious I will have to create one.
> >
> >
> > On Aug 2, 8:20 pm, Lucky B < [EMAIL PROTECTED]> wrote:
> > > You could try Eclipse BIRT for a WYSIWYG interface. But otherwise you
> > > can create a view however you want to report your data doing whatever
> > > manipulation you wanted. I don't see what else you would need other
> > > than to create a view.
> > >
> > > On Aug 2, 5:17 am, Mir Nazim <[EMAIL PROTECTED]> wrote:
> > >
> > > > Anybody has any views on this.
> > >
> > > > --
> > > > PS: posting just to keep this topic fresh
> > >
> > > > On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
> > >
> > > > > Hello
> > >
> > > > > I was wondering has anybody done application that was something
> > like a
> > > > > mini crystal reports. Generating a report based of model items
> > > > > selected in a WYSIWYG(ok this is not important) fashion.  And
> > > > > generating a HTML tables based report with defined calculations
> > etc.
> > >
> > > > > I understand that Django Admin has some kind of similar
> > facilities. I
> > > > > am looking into them. In the mean time thought that may be some
> > one
> > > > > else might be doing similar stuff somewhere.
> >
> >
> >
> >
> >
>
>
> --
> Regards,
> Ben Ford
> [EMAIL PROTECTED]
> +628111880346
> >
>

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-03 Thread Ben Ford
I'm working on a django app at the moment that allows you to define and save
reports. It has a method similar to templatetags for loading user defined
functions to add to the reports too. As it stands you can build and save
these reports with a web front end, and download the results in CSV. I just
need to write a front end for creating filters and it'll be good to go. I'll
be happy to release it for the benefit of others when it's done.
Ben

On 03/08/07, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
>
> I understand that views need to be created. I am doing that these
> days.
>
> What specifically I wanted to know is whether anyone else has worked
> on a similar stuff. So he might want to share his experience.
>
> BRIT is Java. I would prefer something more python based solution.
> even better is there is a django based one. If there is none, its
> obvious I will have to create one.
>
>
> On Aug 2, 8:20 pm, Lucky B <[EMAIL PROTECTED]> wrote:
> > You could try Eclipse BIRT for a WYSIWYG interface. But otherwise you
> > can create a view however you want to report your data doing whatever
> > manipulation you wanted. I don't see what else you would need other
> > than to create a view.
> >
> > On Aug 2, 5:17 am, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> > > Anybody has any views on this.
> >
> > > --
> > > PS: posting just to keep this topic fresh
> >
> > > On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
> >
> > > > Hello
> >
> > > > I was wondering has anybody done application that was something like
> a
> > > > mini crystal reports. Generating a report based of model items
> > > > selected in a WYSIWYG(ok this is not important) fashion.  And
> > > > generating a HTML tables based report with defined calculations etc.
> >
> > > > I understand that Django Admin has some kind of similar facilities.
> I
> > > > am looking into them. In the mean time thought that may be some one
> > > > else might be doing similar stuff somewhere.
>
>
> >
>


-- 
Regards,
Ben Ford
[EMAIL PROTECTED]
+628111880346

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-02 Thread Mir Nazim

I understand that views need to be created. I am doing that these
days.

What specifically I wanted to know is whether anyone else has worked
on a similar stuff. So he might want to share his experience.

BRIT is Java. I would prefer something more python based solution.
even better is there is a django based one. If there is none, its
obvious I will have to create one.


On Aug 2, 8:20 pm, Lucky B <[EMAIL PROTECTED]> wrote:
> You could try Eclipse BIRT for a WYSIWYG interface. But otherwise you
> can create a view however you want to report your data doing whatever
> manipulation you wanted. I don't see what else you would need other
> than to create a view.
>
> On Aug 2, 5:17 am, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > Anybody has any views on this.
>
> > --
> > PS: posting just to keep this topic fresh
>
> > On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > > Hello
>
> > > I was wondering has anybody done application that was something like a
> > > mini crystal reports. Generating a report based of model items
> > > selected in a WYSIWYG(ok this is not important) fashion.  And
> > > generating a HTML tables based report with defined calculations etc.
>
> > > I understand that Django Admin has some kind of similar facilities. I
> > > am looking into them. In the mean time thought that may be some one
> > > else might be doing similar stuff somewhere.


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-02 Thread Lucky B

You could try Eclipse BIRT for a WYSIWYG interface. But otherwise you
can create a view however you want to report your data doing whatever
manipulation you wanted. I don't see what else you would need other
than to create a view.

On Aug 2, 5:17 am, Mir Nazim <[EMAIL PROTECTED]> wrote:
> Anybody has any views on this.
>
> --
> PS: posting just to keep this topic fresh
>
> On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
>
> > Hello
>
> > I was wondering has anybody done application that was something like a
> > mini crystal reports. Generating a report based of model items
> > selected in a WYSIWYG(ok this is not important) fashion.  And
> > generating a HTML tables based report with defined calculations etc.
>
> > I understand that Django Admin has some kind of similar facilities. I
> > am looking into them. In the mean time thought that may be some one
> > else might be doing similar stuff somewhere.


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Something like a mini Crystal Reports with Django

2007-08-02 Thread Mir Nazim

Anybody has any views on this.

--
PS: posting just to keep this topic fresh

On Jul 31, 4:28 pm, Mir Nazim <[EMAIL PROTECTED]> wrote:
> Hello
>
> I was wondering has anybody done application that was something like a
> mini crystal reports. Generating a report based of model items
> selected in a WYSIWYG(ok this is not important) fashion.  And
> generating a HTML tables based report with defined calculations etc.
>
> I understand that Django Admin has some kind of similar facilities. I
> am looking into them. In the mean time thought that may be some one
> else might be doing similar stuff somewhere.


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Something like a mini Crystal Reports with Django

2007-07-31 Thread Mir Nazim

Hello

I was wondering has anybody done application that was something like a
mini crystal reports. Generating a report based of model items
selected in a WYSIWYG(ok this is not important) fashion.  And
generating a HTML tables based report with defined calculations etc.

I understand that Django Admin has some kind of similar facilities. I
am looking into them. In the mean time thought that may be some one
else might be doing similar stuff somewhere.


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Jasper Reports

2007-06-12 Thread [EMAIL PROTECTED]

Yeah...I'm surprised though that iReport hasn't branched off to have a
Save As Report Lab report though.  It is a nice report design
package...they shouldn't tie themselves to one report format

On Jun 12, 10:11 am, Joel <[EMAIL PROTECTED]> wrote:
> I went down the exact same path as you.  I wanted to use Jasper/iReport
> with Django.  In the end, it ended up being easier just using Report Lab
> which has produced some very nice results.  I do miss iReport, but for
> our purposes we didn't need a graphical editor for the reports on this
> project - they were very custom.
>
> It's nice that ReportLab integrates tightly with Django.  I think that
> trying to use Jasper would have been a kludge at best.
>
> -- Joel
>
> [EMAIL PROTECTED] wrote:
> > Has anyone successfully used Jasper Reports on the server being called
> > from a Django view?
>
> > I've done a few things with ReportLab, but we have the need for a
> > graphical Report Designer, which I don't believe exists for Report
> > Lab...so we were talking about the possibiltiy of using Jasper
> > Reports...thought I'd see if anyone had done this before?


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Jasper Reports

2007-06-12 Thread Joel

I went down the exact same path as you.  I wanted to use Jasper/iReport
with Django.  In the end, it ended up being easier just using Report Lab
which has produced some very nice results.  I do miss iReport, but for
our purposes we didn't need a graphical editor for the reports on this
project - they were very custom.

It's nice that ReportLab integrates tightly with Django.  I think that
trying to use Jasper would have been a kludge at best.

-- Joel

[EMAIL PROTECTED] wrote:
> Has anyone successfully used Jasper Reports on the server being called
> from a Django view?
> 
> I've done a few things with ReportLab, but we have the need for a
> graphical Report Designer, which I don't believe exists for Report
> Lab...so we were talking about the possibiltiy of using Jasper
> Reports...thought I'd see if anyone had done this before?
> 
> 
> > 
> 


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Jasper Reports

2007-06-12 Thread olive

Hello,

another way is to use OpenOffice:
- easy to use and feature reach graphical interface (Text, Draw,
Presentation or Speadsheet)
- Native PDF export (you don't need any Adobe product)
- standard Open Document Format (recommended way to populate data from
a template using LXML for example)
- PyUno API (to automate document opening and exporting)
- very good performance

Feel free (of charge) to ask question ;-)

HTH,

Olive


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Jasper Reports

2007-06-12 Thread Eugene Morozov



On 12 июн, 04:53, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Has anyone successfully used Jasper Reports on the server being called
> from a Django view?

I've implemented a Jasper server in Jython. It listens on some network
port and generates Jasper reports based on data incoming from socket.
The data was sent by a Django application.

This was work for hire, so I cannot share the sources. But it is
really easy to use Jasper within Jython.

And if it is possible to run Django under Jython, the task would
become even simpler.
Eugene


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Jasper Reports

2007-06-12 Thread [EMAIL PROTECTED]

I inherited an online reporting/statistic web-app built with Spring
and Jasper Reports.

After being exposed to that, it is safe to say that I wont vulentarily
use Jasper in any future project, ever.

I haven't followed any of the links here, but iReport is a pretty
horrible program to work with as well if you
intend to export the reports to Excel.

I'm building a reporting app myself in django as a replacement for the
Spring thingy I mentioned above.
My approach is to roll my own reporting; based on a query and an lot
of various configurations, I build an
XML file with the query result and all the parameteres. Then I have
various command-line applications
that I call 'exporters'. I pipe the XML into the exporter, which is
able to convert it to anything, and pipe
the exporters output back into a file that I put up for download.

It sounds a lot like 'not-invented-here' mentality, but with the
requirement to export to virtually anything,
plus the existing application was a mess, this was the best way to do
it that I could think of.

On Jun 12, 5:59 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> I downloaded the screencast on it, which took forever, it looks pretty
> crude right now.  I'm sure it will develop over time, but my boss has
> seen iReport for Jasper Reports before, which is why he was wanting me
> to try and use that.
>
> I've done a form design tool for something else in Java a few years
> ago... I'm toying with the idea of learning more about rfxml and
> creating a java based designer for ReportLab...but that will probably
> have to wait a while.
>
> On Jun 11, 9:14 pm, Carl Karsten <[EMAIL PROTECTED]> wrote:
>
> > [EMAIL PROTECTED] wrote:
> > > Has anyone successfully used Jasper Reports on the server being called
> > > from a Django view?
>
> > > I've done a few things with ReportLab, but we have the need for a
> > > graphical Report Designer, which I don't believe exists for Report
> > > Lab.
>
> > Check out:http://dabodev.com/documentation
> > Report Designer Overview (Paul, 2006-02-13, 23 minutes)
> > (gui report designer for reportlab)
>
> > I have never used it, but it looks pretty cool.
>
> > Carl K


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Jasper Reports

2007-06-11 Thread [EMAIL PROTECTED]

I downloaded the screencast on it, which took forever, it looks pretty
crude right now.  I'm sure it will develop over time, but my boss has
seen iReport for Jasper Reports before, which is why he was wanting me
to try and use that.

I've done a form design tool for something else in Java a few years
ago... I'm toying with the idea of learning more about rfxml and
creating a java based designer for ReportLab...but that will probably
have to wait a while.


On Jun 11, 9:14 pm, Carl Karsten <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > Has anyone successfully used Jasper Reports on the server being called
> > from a Django view?
>
> > I've done a few things with ReportLab, but we have the need for a
> > graphical Report Designer, which I don't believe exists for Report
> > Lab.
>
> Check out:http://dabodev.com/documentation
> Report Designer Overview (Paul, 2006-02-13, 23 minutes)
> (gui report designer for reportlab)
>
> I have never used it, but it looks pretty cool.
>
> Carl K


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Jasper Reports

2007-06-11 Thread Carl Karsten

[EMAIL PROTECTED] wrote:
> Has anyone successfully used Jasper Reports on the server being called
> from a Django view?
> 
> I've done a few things with ReportLab, but we have the need for a
> graphical Report Designer, which I don't believe exists for Report
> Lab.


Check out:
http://dabodev.com/documentation
Report Designer Overview (Paul, 2006-02-13, 23 minutes)
(gui report designer for reportlab)

I have never used it, but it looks pretty cool.

Carl K



--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Jasper Reports

2007-06-11 Thread [EMAIL PROTECTED]

Has anyone successfully used Jasper Reports on the server being called
from a Django view?

I've done a few things with ReportLab, but we have the need for a
graphical Report Designer, which I don't believe exists for Report
Lab...so we were talking about the possibiltiy of using Jasper
Reports...thought I'd see if anyone had done this before?


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Integrating Jasper reports / Reporting in general ??

2007-04-10 Thread gordyt

Joel I recently went through the same process; that is, I migrated
from a Java application, using JasperReports to a Python/Django
application using ReportLab.

It took a bit to get my head around ReportLab, but end the end it has
worked out very nicely.

--gordon


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Integrating Jasper reports / Reporting in general ??

2007-04-09 Thread Joel

Ahh - forget it.  I looked further into ReportLab and found out just how
impressive it is.

-- Joel

Joel wrote:
> I saw that someone has let Ruby use JasperReports with a simple script:
> 
> http://wiki.rubyonrails.org/rails/pages/HowtoIntegrateJasperReports
> 
> I would love to use Jasper Reports because we use it on other (Java and
> PHP) projects and it has a great, free report editor
> (http://jasperforge.org/sf/wiki/do/viewPage/projects.ireport/wiki/Screenshots)
> 
> Has anyone seen something like this for Python?  Or even Django?  I want
> to avoid re-writing something that's already been done.
> 
> In general, what are you using for your PDF-reporting needs?
> 
> Thanks!
> -- Joel
> 
> > 
> 


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Integrating Jasper reports / Reporting in general ??

2007-04-09 Thread Joel

I saw that someone has let Ruby use JasperReports with a simple script:

http://wiki.rubyonrails.org/rails/pages/HowtoIntegrateJasperReports

I would love to use Jasper Reports because we use it on other (Java and
PHP) projects and it has a great, free report editor
(http://jasperforge.org/sf/wiki/do/viewPage/projects.ireport/wiki/Screenshots)

Has anyone seen something like this for Python?  Or even Django?  I want
to avoid re-writing something that's already been done.

In general, what are you using for your PDF-reporting needs?

Thanks!
-- Joel

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



User generated reports

2006-10-03 Thread Jaikumar

Hi  All
  I am using Django and python to build a web based framework. My
backend database is MySQL. So the users of this framework would like to
create and use customizable reports.

ex: If one of the tables in the MySQL DB is the results of a test plan
execution, then the users would like to create reports which would
summarize the results.

Is there any module / plugin available so that I could minimize the
effort involved ? I do NOT want to bypass Django and directly access
the database.

Thanks
Jaikumar


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Re: Ticket reports

2005-09-02 Thread Jeremy Dunck

On 9/2/05, Jeremy Dunck <[EMAIL PROTECTED]> wrote:
> Sorry, from here[1], I see that Trac admins can add reports to the
> list of ones supplied with the software.

I should point out that I don't know if Trac is smart about SQL
injection, which may make parameterization dangerous.


Re: Ticket reports

2005-09-02 Thread Jeremy Dunck

On 9/2/05, Adrian Holovaty <[EMAIL PROTECTED]> wrote:
> 
> On 9/1/05, Jeremy Dunck <[EMAIL PROTECTED]> wrote:
> > Can we get a report which takes wildcards for ticket summary and 
> > description?
> >
> > With a small number of active tickets, it's not such an issue, but
> > it's at 160 and climbing slowly.
> 
> What do you mean?

Sorry, from here[1], I see that Trac admins can add reports to the
list of ones supplied with the software.

I also see that reports can be parameterized, so that a like clause
could be used on fields.  This could be used find issues which include
the text "DB", for example.

I'm asking that a report be added which supports parameterization and
uses that parameter to find issues including that text in the summary
and description fields.

I think this query would do something like I want (not tested, since I
don't have an install of trac handy):

SELECT id AS ticket, status, severity, priority, owner, 
   time as created, summary FROM ticket 
  WHERE status IN ('new', 'assigned', 'reopened')
  AND (summary like '$in_summary' or description like '$in_description')
  ORDER BY priority, time

[1]
http://code.djangoproject.com/wiki/TracReports


Re: Ticket reports

2005-09-02 Thread Adrian Holovaty

On 9/1/05, Jeremy Dunck <[EMAIL PROTECTED]> wrote:
> Can we get a report which takes wildcards for ticket summary and description?
> 
> With a small number of active tickets, it's not such an issue, but
> it's at 160 and climbing slowly.

What do you mean?

Adrian

-- 
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org


Ticket reports

2005-08-31 Thread Jeremy Dunck

Can we get a report which takes wildcards for ticket summary and description?

With a small number of active tickets, it's not such an issue, but
it's at 160 and climbing slowly.