Re: Cooki Problem

2007-02-13 Thread samira
Thanks Dear ScottB, I reviewed that link you mentioned. As I know now, we can have two ways to store data in cookie: Session for permanent and cookie for temporary. Am I right? I used "response.setcookie" but my problem not solve yet :( can you tell me how create httpResponse object? Maybe I creat

Re: Dreamhost Statistics + Django

2007-02-13 Thread chasfs
Eugene, Thanks for the quick reply! That solved the problem. Is this a great group or what? Thanks, -chasfs On Feb 14, 12:05 am, Eugene Lazutkin <[EMAIL PROTECTED]> wrote: > No need to do it in Dkango --- you should add more rewrite rules in > .htaccess (seehttp://wiki.dreamhost.com/index.php

Re: Dreamhost Statistics + Django

2007-02-13 Thread Eugene Lazutkin
No need to do it in Dkango --- you should add more rewrite rules in .htaccess (see http://wiki.dreamhost.com/index.php/Django for details): RewriteCond %{REQUEST_URI} ^/stats/(.*)$ [OR] RewriteCond %{REQUEST_URI} ^/failed_auth.html$ RewriteRule ^.*$ - [L] It will take care of /stats URL. If you

Dreamhost Statistics + Django

2007-02-13 Thread chasfs
I've brought up Django on my Dreamhost account to run a survey application (http://surveys.zdecisions.com). The problem is that Dreamhost has a statistics package that shows up in domain/stats, (e.g. surveys.zdecisions.com/stats) but Django gets all of the urls and doesn't know what to do with st

Re: SCGIMount != '/'

2007-02-13 Thread mulc
This is what SCGI reports ( apache 2.2.4, mod_scgi 1.12, with the default main() invocation of scgi/scgi_server.py ). In this implementation at least, REQUEST_URI does not include the proctal or hostname. Essentially: REQUEST_URI == SCRIPT_NAME + PATH_INFO + QUERY_STRING HTTP_REFERER: 'http://

Re: GIF won't render properly

2007-02-13 Thread kbochert
On Feb 13, 7:41 pm, "Jeremy Dunck" <[EMAIL PROTECTED]> wrote: > On 2/13/07, kbochert <[EMAIL PROTECTED]> wrote: > ...> > If you -must- serve media with django, use the static media server > > > that's built-in. But you're really better off not doing that. > ... > > Will that handle media correc

Re: SCGIMount != '/'

2007-02-13 Thread mulc
This borks query-string handling. ['REQUEST_URI'] includes the query string. instead: self.path = environ['SCRIPT_NAME'] + environ['PATH_INFO'] On Feb 13, 5:41 pm, "mulc" <[EMAIL PROTECTED]> wrote: > OK. > > I hacked django/core/handlers/wsgi.py. ( line #56 ) > > In the __init__ function of

Selecting MySQL engine (InnoDB/MyISAM) when creating models

2007-02-13 Thread yary
There's a thread from June 28 '06 on this list about changing MySQL's storage engine from InnoDB to MyISAM for a particular table/model. Now, an InnoDB table respects foreign keys, and a MyISAM table ignores them. An "ALTER TABLE ... ENGINE = MyISAM" statement will fail if the table has any forei

Re: GIF won't render properly

2007-02-13 Thread Jeremy Dunck
On 2/13/07, kbochert <[EMAIL PROTECTED]> wrote: ... > > If you -must- serve media with django, use the static media server > > that's built-in. But you're really better off not doing that. ... > Will that handle media correctly when in production with DEBUG off? Looks like it, > Why am I better

Re: sending an extra query to a generic view, what is the django way?

2007-02-13 Thread hotani
Thanks, that example for extending the generic view is what I was looking for; I'll try it out tomorrow. As for request.user not being available, that was when I was trying to use it in urls.py. I have never had a problem accessing it from views. --~--~-~--~~~---~--~

Re: GIF won't render properly

2007-02-13 Thread kbochert
On Feb 13, 5:52 pm, "Jeremy Dunck" <[EMAIL PROTECTED]> wrote: > > Ah! I was stumped before. Not now. > > render_to_response expects a template and, I'm sure, opens the file as > text. You're giving it a binary. Don't do that. It'll be served as > html mime type and line endings will get mu

Re: GIF won't render properly

2007-02-13 Thread Jeremy Dunck
On 2/13/07, kbochert <[EMAIL PROTECTED]> wrote: ... > def static(request, name): > return render_to_response('polls/%s' % name ,{}) Ah! I was stumped before. Not now. render_to_response expects a template and, I'm sure, opens the file as text. You're giving it a binary. Don't do that. I

GIF won't render properly

2007-02-13 Thread kbochert
-urls.py: from django.conf.urls.defaults import * urlpatterns = patterns('', (r'^polls/(?P.+)$', 'Mysite.polls.views.static'), # (r'^polls/(?Pnews\.html)$', 'Mysite.polls.views.static'), ) --views.py: # Create your views here. from django.shortcuts import rende

Re: SCGIMount != '/'

2007-02-13 Thread Waylan Limberg
On Tue, 13 Feb 2007 17:41:16 -0500, mulc <[EMAIL PROTECTED]> wrote: > > > OK. > > I hacked django/core/handlers/wsgi.py. ( line #56 ) > > In the __init__ function of WSGIRequest I changed: > > self.path = environ['PATH_INFO'] > > to > > self.path = environ['REQUEST_URI'] > > I then chang

Listing users

2007-02-13 Thread [EMAIL PROTECTED]
Hi, I have a site with users and an additional user_profile to store extra information like a signature, avatar, etc. I cannot figure out how to use a single query to get a list of users and at the same time join in their user_profile information. Currently I have this: users = User.objects.al

Re: Django Cheat Sheet

2007-02-13 Thread Honza Král
On 2/13/07, Matt <[EMAIL PROTECTED]> wrote: > > Cheers for all the feedback guys. Well, cheers to you in the first place... ;) Here's a reply to your questions so > far. > > As Malcolm Tredinnick pointed out in a private reply (and James Bennet > here), Django doesn't mind whether you pass it a t

Re: sending an extra query to a generic view, what is the django way?

2007-02-13 Thread [EMAIL PROTECTED]
As far as I know, request.user should already be available in your generic view. [1] is the documentation for that particular feature. It should be available as 'user' in all templates that use RequestContext, which by default all generic views do. [1] http://www.djangoproject.com/documentation/a

Model instance identity

2007-02-13 Thread David Abrahams
I just wrote some code that used Model instances as keys in a dict, and was surprised to find two instances in the dict that represented the same object in the database. Shouldn't that be impossible? If you can't guarantee that a given object in the database is always represented by the same Py

Re: sending an extra query to a generic view, what is the django way?

2007-02-13 Thread Malcolm Tredinnick
On Tue, 2007-02-13 at 22:19 +, hotani wrote: [...] > Is there a nice way to extend the generic view to fit this in? I > thought about making my own view that would act as a wrapper for the > generic view but was unable to make it work. If it were a standard > view, this would be simple--but as

Re: stored procedures in initial SQL ?

2007-02-13 Thread Malcolm Tredinnick
On Tue, 2007-02-13 at 16:51 +0100, Bram - Smartelectronix wrote: > Hi, > > > with the preprocessing that's being done on 'initial' SQL before adding > it to the DB I'm getting into trouble with the stored procedures I would > like to add to the DB (for the model in question). > > The backend

Re: SCGIMount != '/'

2007-02-13 Thread mulc
OK. I hacked django/core/handlers/wsgi.py. ( line #56 ) In the __init__ function of WSGIRequest I changed: self.path = environ['PATH_INFO'] to self.path = environ['REQUEST_URI'] I then changed up my urls.py (r'^admin/', include('django.contrib.admin.urls')), becomes

sending an extra query to a generic view, what is the django way?

2007-02-13 Thread hotani
I have a generic view for an object in a basic bug tracker app. It shows things like 'title', 'description', 'resolution', etc.. and that is all working fine with a generic view. However, I'm trying to send a piece of info that involves a completely different model and not finding a pleasant way

Re: Preliminary or draft Django Book as PDF?

2007-02-13 Thread Adrian Holovaty
On 2/13/07, voltron <[EMAIL PROTECTED]> wrote: > I think it would be cool to be able to read the Django book in PDF > format, it´s much more comfortable to read on the train when one has > no access to the net, and one avoids the Script execution errors that > always crop up from the site. > > Do

Preliminary or draft Django Book as PDF?

2007-02-13 Thread voltron
Hi all! I think it would be cool to be able to read the Django book in PDF format, it´s much more comfortable to read on the train when one has no access to the net, and one avoids the Script execution errors that always crop up from the site. Do the authors have something of the sort somewhere?

Re: Django Cheat Sheet

2007-02-13 Thread Matt
Cheers for all the feedback guys. Here's a reply to your questions so far. As Malcolm Tredinnick pointed out in a private reply (and James Bennet here), Django doesn't mind whether you pass it a tuple or a lists; one can be substituted for the other. I think I'll remove this distinction in the

Extending django.contrib.auth.views.login ?

2007-02-13 Thread whiteinge
I'm pretty new to Django, so any advice would really be appreciated, especially if I'm headed in the wrong direction. I'm trying to "extend" django.contrib.auth.views.login in the same fashion as a generic view. I would like to deposit points in a user's account after a sucessful login. Here's wh

Re: ¿django-es?

2007-02-13 Thread ian
> > Hola, si te refieres a una lista de django en español, si la tenemos > la formamos hace un tiempo atras, si deseas suscribirte esta en: [portuguese] Opa, seja bem vindo!! valeu, []'s Ian [english uk] Crikey, you are welcome salute's []'s Ian F U cn rd dis U mst uz Linux. --~--~-

Re: Constructing Breadcrumbs

2007-02-13 Thread Rob Hudson
One idea I've implemented before: We have a model called Page that has fields for title and such. I added a self-referential field called parent (a FK to itself) to represent whether a Page is a child of another Page. If Page has a parent, get the parent. If that Page has a parent, get its par

Re: Registration confirmation view

2007-02-13 Thread voltron
Thanks for the tip Scoot! On Feb 12, 2:51 pm, "ScottB" <[EMAIL PROTECTED]> wrote: > On Feb 11, 3:42 pm, "voltron" <[EMAIL PROTECTED]> wrote: > > > I plan on using newForms and the auth module for my site. All of the > > examples I have seen involve extracting form data and creating a user > > in

Re: E-mailing forms

2007-02-13 Thread [EMAIL PROTECTED]
As one might expect, mail.send_mail() sends mail. You just need to call it when you're saving or otherwise processing the form data. On Feb 13, 1:27 pm, "ChelleBell" <[EMAIL PROTECTED]> wrote: > I have seen all of this before, but will this send the form directly > to an e-mail address, or after

SCGIMount != '/'

2007-02-13 Thread mulc
Is there any mechanism for making Django 'aware' of it's SCGI mountpoint? I have been experimenting with SCGI/WSGI bridges ( both flup, and Titus Brown's SWAP from Paste ) and I am having difficulty mounting a django-app under an existing website a particular location. ie: SCGIMount '/django

Re: ¿django-es?

2007-02-13 Thread Esteban Saavedra L.
Hola, si te refieres a una lista de django en español, si la tenemos la formamos hace un tiempo atras, si deseas suscribirte esta en: http://groups.google.com.bo/group/django-es/ salu2 Esteban -- M.Sc. Ing. Jose Esteban Saavedra Lopez Gerente General BanRey Consultores Telefono:(+591.2) 524

Re: Django Cheat Sheet

2007-02-13 Thread Rob Hudson
> Not really. Anything you can do to a tuple (which is, basically, > iterate over it, slice it and access specific items out of it) you can > also do to a list. A tuple is just a little bit more efficient when > you know you're dealing with something that isn't/shouldn't be > mutable. Actually, I

Re: Constructing Breadcrumbs

2007-02-13 Thread Jeremy Dunck
On 2/13/07, primitive <[EMAIL PROTECTED]> wrote: > I was just wondering if anyone had any suggestions around creating > breadcrumbs in django. I know this is a vague question, but I have a > site built from scratch in django, and I want an easy way to construct > breadcrumbs, possibly based on the

Re: Regex

2007-02-13 Thread kbochert
On Feb 13, 11:13 am, "Jeremy Dunck" <[EMAIL PROTECTED]> wrote: > On 2/13/07, kbochert <[EMAIL PROTECTED]> wrote: > > > Given the urlhttp://127.0.0.1:8000/mysite.news.htm > > > then in urls.py > > > (r'^polls/(?P[a-z.]+)', 'Mysite.polls.views.news'), > > #displays page properly, but without the g

¿django-es?

2007-02-13 Thread Ramiro Morales
[english version below] Hola, Conversando hace un tiempo con Ra (otra usuaria de Django que es muy posible que algunos de los programadores Python argentinos conozcan) surgió la idea de enviar este [1]e-mail para averiguar si existirá una masa crítica de usuarios como para intentar armar un Grup

Re: E-mailing forms

2007-02-13 Thread ChelleBell
I have seen all of this before, but will this send the form directly to an e-mail address, or after someone has submitted the form, will I have to go in and e-mail the form to the person? --~--~-~--~~~---~--~~ You received this message because you are subscribed t

Re: Django Cheat Sheet

2007-02-13 Thread James Bennett
On 2/13/07, Rob Hudson <[EMAIL PROTECTED]> wrote: > I agree with another poster, adding FK and M2M and their options would > be a nice addition if there is room. Might be worth doing up multiple sheets, kind of like YUI does with their components. > Is there any reasoning to when an admin class

Re: Django Cheat Sheet

2007-02-13 Thread Rob Hudson
Very cool. I agree with another poster, adding FK and M2M and their options would be a nice addition if there is room. Minor nit... It says for version 0.95 yet there is a single template filter with footnote "In development version only." It seems like you might as well remove that. This also

Re: Regex

2007-02-13 Thread Jeremy Dunck
On 2/13/07, kbochert <[EMAIL PROTECTED]> wrote: > > > Given the url http://127.0.0.1:8000/mysite.news.htm > > then in urls.py > > (r'^polls/(?P[a-z.]+)', 'Mysite.polls.views.news'), > #displays page properly, but without the graphics ... I don't think so, unless something odd is going on. How doe

Constructing Breadcrumbs

2007-02-13 Thread primitive
Good day, I was just wondering if anyone had any suggestions around creating breadcrumbs in django. I know this is a vague question, but I have a site built from scratch in django, and I want an easy way to construct breadcrumbs, possibly based on the urls. Any suggestions or example implementat

Regex

2007-02-13 Thread kbochert
Given the url http://127.0.0.1:8000/mysite.news.htm then in urls.py (r'^polls/(?P[a-z.]+)', 'Mysite.polls.views.news'), #displays page properly, but without the graphics (r'^polls/(?P.+)', 'Mysite.polls.views.news'), #displays page with some of the graphics, some of which are badly rendered

Re: Django Cheat Sheet

2007-02-13 Thread Tim Chase
> a Django cheat sheet: > > > > We've spent a fair bit of time on it and would really appreciate the > following: > > 1. That you download it; try it out and enjoy it! Good stuff. Had to squish it from A4 to 8.5x11 (rolls eyes at

Re: Django activities at PyCon 2007

2007-02-13 Thread [EMAIL PROTECTED]
On Jan 2, 3:30 pm, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote: > * Like last year, I'll be sticking around for the four days after the > conference to lead a Djangosprint. Any and all are invited to attend; we'll > have a huge amount of fun and get a whole lot done. I'm really looking forward t

Re: Django Cheat Sheet

2007-02-13 Thread Picio
Many many thanks, It helped me find the "js" admin feature ! I've not seen It before ! Useful! Picio 2007/2/13, Benedict Verheyen <[EMAIL PROTECTED]>: > > John Sutherland schreef: > > Hi all, > > > > Firstly, sorry for the cross-post. > > > > My employer, Mercurytide [1], as some of you may have

admin interface: insert/update

2007-02-13 Thread Antonio
hi all, I've create a class whith a ForeignKey() who is visualized as in admin interface ... when I select a option from the menu and save, the option selected change its state ('confermata') and must NOT appear in the subsequents INSERT ... class Conferma(models.Model): fk_prev = mode

Generating form file

2007-02-13 Thread Sebastien Armand [Pink]
I already know about the form form_for_model() function but I don't find it very useful when you have to customize the form. If I need to customize each field, I'll need to re-write the name of each field so using form_for_model() becomes quite useless and it's not very DRY I think. Is there a comm

Re: How do you pass a variable to a template tag?

2007-02-13 Thread [EMAIL PROTECTED]
Thank you Aidas. As it turns out, I already had a foreignkey relationship with my user, so I didn't need a template tag at all. Good to know how to do it, though. On Feb 13, 10:27 am, "Aidas Bendoraitis" <[EMAIL PROTECTED]> wrote: > Hello Baxter! > > Take a look at my approach. It might help you

Re: Django Cheat Sheet

2007-02-13 Thread Benedict Verheyen
John Sutherland schreef: > Hi all, > > Firstly, sorry for the cross-post. > > My employer, Mercurytide [1], as some of you may have seen in the > past, publishes white-papers on a monthly basis. This month it's > another Django themed one: a Django cheat sheet: Super John, very useful ! Thanks

Re: correct limit_choices_to syntax

2007-02-13 Thread Benedict Verheyen
ScottB schreef: > I think you need to pass the actual values (i.e. the rooms), rather > than a function that returns them. Also 'id_in' needs two > underscores. So maybe: > > limit_choices_to = {'id__in': get_rooms()} > > Scott Indeed, i had already found out there was an underscore short. I

Re: How do you pass a variable to a template tag?

2007-02-13 Thread Aidas Bendoraitis
Hello Baxter! Take a look at my approach. It might help you. The following template tag "load_obj" loads any object by id and saves passes it to the template context variable: # code starts here from django.db.models import get_model from django import template register = template.Lib

Re: Django Cheat Sheet

2007-02-13 Thread Geert Vanderkelen
Hi John, On 13 Feb 2007, at 11:24, John Sutherland wrote: > > Hi all, > > Firstly, sorry for the cross-post. > > My employer, Mercurytide [1], as some of you may have seen in the > past, publishes white-papers on a monthly basis. This month it's > another Django themed one: a Django cheat sheet:

stored procedures in initial SQL ?

2007-02-13 Thread Bram - Smartelectronix
Hi, with the preprocessing that's being done on 'initial' SQL before adding it to the DB I'm getting into trouble with the stored procedures I would like to add to the DB (for the model in question). The backend specific SQL gets treated the same way. I think it's impossible to change the re

Re: Open Book Platform demo site is up

2007-02-13 Thread Jianjun
limodou and gasolin, thanks for the help. On Feb 13, 1:58 am, limodou <[EMAIL PROTECTED]> wrote: > On 2/13/07, Jianjun <[EMAIL PROTECTED]> wrote: > > > limodou, > > Thanks for sharing the source code. It looks a nice. > > I got one question: I create a book on the demo site and I couldn't > > fi

Re: Django Cheat Sheet

2007-02-13 Thread Marc Fargas Esteve
wow! On 2/13/07, Lars Stavholm <[EMAIL PROTECTED]> wrote: > > John Sutherland wrote: > > Hi all, > > > > Firstly, sorry for the cross-post. > > > > My employer, Mercurytide [1], as some of you may have seen in the > > past, publishes white-papers on a monthly basis. This month it's > > another Dj

Re: Django Cheat Sheet

2007-02-13 Thread Lars Stavholm
John Sutherland wrote: > Hi all, > > Firstly, sorry for the cross-post. > > My employer, Mercurytide [1], as some of you may have seen in the > past, publishes white-papers on a monthly basis. This month it's > another Django themed one: a Django cheat sheet: > >

Re: Radio and Checkbox rendering

2007-02-13 Thread Sion Morris
I do have a widget attribute set on the field in the model but it is rendered in the template as a . In which part of the model-view-template do I specify how the radio (or checkbox) fields are rendered? My model looks like this: class ParticipantAttrForm(forms.Form): # Dynamically creates a

Re: Using NEWFORMS to select data from the MODEL

2007-02-13 Thread Brian Rosner
On 2007-02-10 18:22:53 -0700, "johnny" <[EMAIL PROTECTED]> said: > > I have to include some fields from 3 different models. How do you > create a selection field, for selecting a category data, in category > model, using newforms? > > Thank You in advance. > > > The way I managed to pull thi

Re: Django Cheat Sheet

2007-02-13 Thread Jacob Kaplan-Moss
On 2/13/07 4:24 AM, John Sutherland wrote: > My employer, Mercurytide [1], as some of you may have seen in the > past, publishes white-papers on a monthly basis. This month it's > another Django themed one: a Django cheat sheet: This is awesome, John -- many thanks for putting it together :) Jac

Re: Django Cheat Sheet

2007-02-13 Thread [EMAIL PROTECTED]
On Feb 13, 11:24 am, "John Sutherland" <[EMAIL PROTECTED]> wrote: > My employer, Mercurytide [1], as some of you may have seen in the > past, publishes white-papers on a monthly basis. This month it's > another Django themed one: a Django cheat sheet: Good job John, thanks. Lorenzo --~--~

Rendering problem

2007-02-13 Thread kbochert
This may just be 5:00 AM stupid but: I have an assortment of html files generated by a WYSIWYG editor (no django markup). I merge these into the polls tutorial and can display the index page at http://127.0.0.1:8000/polls/ , apparently correctly using views.py: def index(request): latest_p

Re: correct limit_choices_to syntax

2007-02-13 Thread ScottB
On Feb 13, 8:06 am, Benedict Verheyen <[EMAIL PROTECTED]> wrote: > def get_rooms(): > return Room.objects.exclude(id__in=[patient.room.id for patient in > Patient.objects.filter(room__isnull=False)]) > I tried limit_choices_to = {'id_in': get_rooms} but this gives me: > TypeError at /patient/

Re: best "right now" solution for large file uploads?

2007-02-13 Thread Bram - Smartelectronix
Nathan R. Yergler wrote: > I recently had this problem and got nowhere with the ticket 2070 > patches. I wanted large file upload with user feedback. I ended up > implementing a two-part solution: a CGI that actually handles the > uploading (the "tramline"-like component) and a Django interface

Re: Image upload - self.image not defined in save method

2007-02-13 Thread Dirk Eschler
On Dienstag, 13. Februar 2007, Brice Carpentier wrote: > On 2/13/07, Dirk Eschler <[EMAIL PROTECTED]> wrote: > > i use ImageWithThumbnailField to upload screenhots. In the save method i > > want to set some additional model fields, like filesize and width/height > > of the uploaded image. The prob

Django Cheat Sheet

2007-02-13 Thread John Sutherland
Hi all, Firstly, sorry for the cross-post. My employer, Mercurytide [1], as some of you may have seen in the past, publishes white-papers on a monthly basis. This month it's another Django themed one: a Django cheat sheet: We've spen

Re: Image upload - self.image not defined in save method

2007-02-13 Thread Brice Carpentier
On 2/13/07, Dirk Eschler <[EMAIL PROTECTED]> wrote: > i use ImageWithThumbnailField to upload screenhots. In the save method i want > to set some additional model fields, like filesize and width/height of the > uploaded image. The problem is, that self.image isn't defined at this point, > the same

Image upload - self.image not defined in save method

2007-02-13 Thread Dirk Eschler
Hello, i use ImageWithThumbnailField to upload screenhots. In the save method i want to set some additional model fields, like filesize and width/height of the uploaded image. The problem is, that self.image isn't defined at this point, the same entry has to be saved twice in the admin. Check

Re: Is there a way for a template file to know its name?

2007-02-13 Thread limodou
On 2/13/07, Michael Lake <[EMAIL PROTECTED]> wrote: > > Hi > > Malcolm Tredinnick wrote: > > There isn't any way to do this built into Django. It may not always make > > sense, either, since a template could just be a string (hence have no > > name). > > > > Looking through some code I have w

Re: Is there a way for a template file to know its name?

2007-02-13 Thread Russell Keith-Magee
On 2/13/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Tue, 2007-02-13 at 17:29 +1100, Michael Lake wrote: > > Hi all > > > There isn't any way to do this built into Django. It may not always make > sense, either, since a template could just be a string (hence have no > name). Actually,

correct limit_choices_to syntax

2007-02-13 Thread Benedict Verheyen
Hi, i'm trying to limit what the user sees for a certain Foreign key. I was told to use the limited_choices_to argument and it indeed seems to fit the bill. However, i'm doing something wrong as this is what i get: TypeError at /patient/edit/94/ _filter_or_exclude() argument after ** must be a d

NEW MONEY NETWORK AGLOCO

2007-02-13 Thread efendy
Hi ... I recently joined AGLOCO because of a friend recommended it to me. I am now promoting it to you because I like the idea and I want you to share in what I think will be an exciting new Internet concept. Sign in : http://www.agloco.com/r/BBBV9253 AGLOCO's story is simple: Do you realize