hi

i'm running 1.97.1 now.

the problem in table "racun" 
SyntaxError: Field delete_this_record does not belong to the table
was gone in previosu version

but the problem with table with images (upload filed) is still here

the model
++++++++++++++++++++++++
db.define_table('izobrazevanje',
                Field('ime','string',label='ime izobraževanja'),
                Field('logo_raster','upload',label='logotip (web)'),
                Field('logo_vector','upload',label='logotip (vektor)'),
                Field('logo_highres','upload',label='logotip (print)'),
                Field('datum_zacetka','date',label='začetek'),
                Field('datum_konca','date',label='konec'),
...
db.izobrazevanje.logo_raster.requires = 
IS_EMPTY_OR(IS_IMAGE(extensions=('jpeg', 'png', 'jpg')))
db.izobrazevanje.logo_vector.requires = 
IS_EMPTY_OR(IS_UPLOAD_FILENAME(extension=('svg|svgz')))
db.izobrazevanje.logo_highres.requires = 
IS_EMPTY_OR(IS_UPLOAD_FILENAME(extension=('jpg|tiff|jpeg|png|tif')))
++++++++++++++++++++++++++++

the controler
++++++++++++++++++++++++++++
@auth.requires_login()
def izobrazevanje_uredi():
    form=crud.update(db.izobrazevanje,request.args(0)) 
    if form.accepts(request.vars, session):
        session.flash = 'podatki o izobraževanju so posodobljeni'
        redirect(URL(izobrazevanja))
    elif form.errors:
        response.flash = 'napaka'
    else:
        response.flash = 'uredi podatke o izobraževanju'   
    return dict(form=form)
+++++++++++++++++++++++++++++

in the view:
+++++++++++++++++++++++++++++
{{extend 'layout.html'}}

<h2>Uredi izbrano izobraževanje</h2>
{{=form}}
++++++++++++++++++++++++++++

error:
++++++++++++++++++++ 

Traceback (most recent call last):
  File "C:\db\Dropbox\web2py\gluon\restricted.py", line 192, in restricted
    exec ccode in environment
  File "C:/db/Dropbox/web2py/applications/test7/controllers/izobrazevanje.py" 
<http://127.0.0.1:8000/admin/default/edit/test7/controllers/izobrazevanje.py>, 
line 98, in <module>
  File "C:\db\Dropbox\web2py\gluon\globals.py", line 137, in <lambda>
    self._caller = lambda f: f()
  File "C:\db\Dropbox\web2py\gluon\tools.py", line 2448, in f
    return action(*a, **b)
  File "C:/db/Dropbox/web2py/applications/test7/controllers/izobrazevanje.py" 
<http://127.0.0.1:8000/admin/default/edit/test7/controllers/izobrazevanje.py>, 
line 15, in izobrazevanje_uredi
    if form.accepts(request.vars, session):
  File "C:\db\Dropbox\web2py\gluon\sqlhtml.py", line 1203, in accepts
    self.table._db(self.table._id == self.record.id).update(**fields)
  File "C:\db\Dropbox\web2py\gluon\dal.py", line 5403, in update
    fields = self.db[tablename]._listify(update_fields,update=True)
  File "C:\db\Dropbox\web2py\gluon\dal.py", line 4679, in _listify
    raise SyntaxError, 'Field %s does not belong to the table' % name
SyntaxError: Field logo_highres__delete does not belong to the table
++++++++++++++++++++++++++++++++++++++

request.vars
+++++++++++++++++++++++++++++++++++++++

post_vars:
cena:
Prohibition against the latter part of things dr. It may. 
datum_konca:
2008-01-04
datum_zacetka:
2008-02-24
id:
23
ime:
Joomla predloge
info:
Vitiated air to travel from 5. 10 000 of electricity. 
kraj_izvedbe:
Mild temperatures; man 167 photo: mount wilson observatory. fig. 
logo_highres:
logo_raster:
logo_vector:
metoda:
Wasted in estuaries penetrated into the saying. It effected by. 
namenjen:
Cocosadu
narocnik:
27
odgovorna_oseba:
38
opis:
Boxes golden age and mammals--with their muddy feet are made great invasions 
of amphibians which the flowing of the mind is passing through one on the 
case of hearing is that the absence of all thoughtful men. we have only or 
even more definitely the variations in part of natural death is a stone and 
in the climax in skeleton of expressing feelings and love hunger and began 
to. 
opomba:
Churning water on the parts in the work. the centre in. 
organizator:
Stuck together as distinguished man were born child of doing when. 
pomocnik:
31
pomocnik2:
24
stevilo_mest:
27
trajanje:
16
voditelj:
15
vsebine:
Comet--the stellar system for a mass and that live on mars the development 
of the surface-atoms of water out a long history of the earth slowing down 
and hard work of the stream gripping teeth in the surface bodies are so long 
gripping teeth in the surface bodies are so long ipping teeth in the surface 
bodies are so long 
znanja:
Aquatic locomotion 192 photo: rotating on the suggestion of some. 




Reply via email to