Edgewall Software
Modify

Opened 7 years ago

Closed 7 years ago

Last modified 5 years ago

#12696 closed defect (cantfix)

TypeError: $(...).disableSubmit is not a function

Reported by: arcadius <arcadius@…> Owned by:
Priority: normal Milestone:
Component: web frontend Version: 1.2
Severity: normal Keywords:
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description (last modified by arcadius <arcadius@…>)

Trac pages (f.e. timeline) are loaded with javascript error. Firefox gives:

TypeError: $(...).disableSubmit is not a function 1 38:66:9
	<anonymous> https://../ticket/38:66:9
	f.Callbacks/o https://../chrome/common/js/jquery.js:2:14728
	f.Callbacks/p.fireWith https://../chrome/common/js/jquery.js:2:15502
	f</<.ready https://../chrome/common/js/jquery.js:2:9592
	f</B https://../chrome/common/js/jquery.js:2:14288

Error occurs in statement $(".trac-disable").disableSubmit(".trac-disable-determinant");.

Attachments (0)

Change History (18)

comment:1 by arcadius <arcadius@…>, 7 years ago

Description: modified (diff)

comment:2 by Jun Omae, 7 years ago

What browser are you using?

in reply to:  2 comment:3 by Jun Omae, 7 years ago

Replying to Jun Omae:

What browser are you using?

Sorry. I noticed you're using Firefox.

comment:4 by Jun Omae, 7 years ago

No such errors in demo-1.2/timeline. Please confirm whether the same error occurs after disabling all plugins.

comment:5 by arcadius <arcadius@…>, 7 years ago

Browser: Mozilla 51.0.1 (32-bit).

I deleted all records from [components] section in trac.ini - error remains.

My Trac enviroment & file ticket_notify_email.txt, changed by me according to this tip, can be downloaded here (base_url & database connection string removed).

Maybe, this error is the reason why auto-preview feature stopped to work on my server after upgrading to 1.2 .

comment:6 by Jun Omae, 7 years ago

Clear browser cache and confirm trac.js in your site is the same as tags/trac-1.2/trac/htdocs/js/trac.js.

comment:7 by arcadius <arcadius@…>, 7 years ago

Yes, files were different. When I replaced <enviroment>/htdocs/common/js/trac.js with actual file, JS error disappeared, auto-preview started to work again. Thank you!

Maybe I did something wrong during upgrading FreeBSD port trac-1.0.13 to trac-1.2

comment:8 by Jun Omae, 7 years ago

Resolution: cantfix
Status: newclosed

Thanks for the feedback. That's an InstallationIssue. Closing as cantfix.

in reply to:  7 ; comment:9 by Ryan J Ollos, 7 years ago

Replying to arcadius <arcadius@…>:

Yes, files were different. When I replaced <enviroment>/htdocs/common/js/trac.js with actual file, JS error disappeared, auto-preview started to work again. Thank you!

Maybe I did something wrong during upgrading FreeBSD port trac-1.0.13 to trac-1.2

You may have skipped TracUpgrade#a5.Refreshstaticresources. If your webserver is configured to server static resources (TracInstall#MappingStaticResources), then you are probably now serving all of the old js and css files with the exception of trac.js which you just manually replaced. If you need more help sorting this out please ask on the MailingList.

in reply to:  9 ; comment:10 by arcadius <arcadius@…>, 7 years ago

Replying to arcadius <arcadius@…>:

… You may have skipped TracUpgrade#a5.Refreshstaticresources. …

You are right. Now I updated static resources with trac-admin /path/to/env deploy /deploy/path. Everything is fine except one non-critical thing.

Inside /deploy/path/htdocs were created 2 directories: common and site, it's OK. But inside site were also created these 2 directories: site/common and site/site, with the same contents as parent directories, and so on. The most deep directory is site/site/site/site, which contains only common and no site.

in reply to:  10 comment:11 by anonymous, 7 years ago

Inside /deploy/path/htdocs were created 2 directories: common and site, it's OK. But inside site were also created these 2 directories: site/common and site/site, with the same contents as parent directories, and so on. The most deep directory is site/site/site/site, which contains only common and no site.

Sounds like #10316.

in reply to:  10 ; comment:12 by Ryan J Ollos, 7 years ago

Replying to arcadius <arcadius@…>:

Inside /deploy/path/htdocs were created 2 directories: common and site, it's OK. But inside site were also created these 2 directories: site/common and site/site, with the same contents as parent directories, and so on. The most deep directory is site/site/site/site, which contains only common and no site.

I suggest deploying with a directory structure like:

  • /path/to/env
  • /path/to/deploy

rather than deploying into /path/to/env. The files in env/htdocs will be extracted during the deploy step, so make sure to delete the files you previously deployed into that directory. You'll need to change your web server configuration after moving /path/to/deploy.

in reply to:  12 ; comment:13 by anonymous, 7 years ago

Replying to Ryan J Ollos: I deployed into empty directory and got there «recursive» odd structure described above.

Version 0, edited 7 years ago by anonymous (next)

in reply to:  13 ; comment:14 by Ryan J Ollos, 7 years ago

Replying to anonymous:

Replying to Ryan J Ollos:

I deployed into empty directory and got there «recursive» odd structure described above.

Was the empty directory outside of $env? Please list the contents of your $env/htdocs. Are you using a shared htdocs directory?

in reply to:  14 ; comment:15 by arcadius <arcadius@…>, 7 years ago

Replying to Ryan J Ollos:

Was the empty directory outside of $env? Please list the contents of your $env/htdocs. Are you using a shared htdocs directory?

What is «$env»? Both directories (Trac enviroment and deployment output) don't intersect. You can download them here. There's htdocs_dir in [inherit] section, but it's set to empty value.

in reply to:  15 comment:16 by Ryan J Ollos, 7 years ago

Replying to arcadius <arcadius@…>:

What is «$env»? Both directories (Trac enviroment and deployment output) don't intersect. You can download them here. There's htdocs_dir in [inherit] section, but it's set to empty value.

$env is that path to your environment directory. I looked at your zip file. You've deleted env/htdocs so deploy/htdocs/site should not exist, however it contains the recursive copies. Please delete the deploy directory, and then run trac-admin env deploy deploy while you current directory is the parent of env and deploy.

comment:17 by arcadius <arcadius@…>, 7 years ago

Yes, this zip is out-of-date, now no recursive folders are created. Recursion occurs only if there's $env/htdocs (see zip in comment:5).

comment:18 by Ryan J Ollos, 7 years ago

Okay, I misunderstood and thought you were still having troubles. For sanity, you may want to restore an empty htdocs directory below your environment directory, since it's useful and expected to be present in case you do any interface customization.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The ticket will remain with no owner.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from (none) to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.