Commit graph

44495 commits

Author SHA1 Message Date
Anand Doshi
78ef561f41 Fix in scrub_relative_urls 2014-02-21 12:34:46 +05:30
Anand Doshi
55a9dea264 Frappe Favicon 2014-02-20 19:36:43 +05:30
Pratik Vyas
7ac4682301 add conflict error code 2014-02-20 19:23:02 +05:30
Rushabh Mehta
688cae562d fix to reload: 2014-02-20 19:17:56 +05:30
Rushabh Mehta
e660fde74e fixed sitemap patch 2014-02-20 19:02:23 +05:30
Anand Doshi
adbfc48d99 Fixed Scrub Relative URLs to include url(something), styling 2014-02-20 18:50:49 +05:30
Rushabh Mehta
3cb694dc0b fixed patch 2014-02-20 18:18:06 +05:30
Rushabh Mehta
33874d1cb0 added patch 2014-02-20 18:15:57 +05:30
Rushabh Mehta
d63fc463c1 fixed custom action issue, restore in versions 2014-02-20 18:12:32 +05:30
Rushabh Mehta
2b2ef3b503 added versions 0.1 #429 2014-02-20 17:50:03 +05:30
Rushabh Mehta
dd747eeff1 added to patch 2014-02-20 15:17:19 +05:30
Rushabh Mehta
863e3f8a4a fixes to sitemap and reportview 2014-02-20 15:17:19 +05:30
Rushabh Mehta
911679c152 added paging to listing 2014-02-20 15:17:19 +05:30
Pratik Vyas
67b5f98892 do not style inline if in test case 2014-02-20 12:43:46 +05:30
Pratik Vyas
090d38a0f3 do not format emails if in test 2014-02-20 12:28:18 +05:30
Rushabh Mehta
c95e051ed8 fixed login and added script_lib in template for one time script loading 2014-02-19 16:48:21 +05:30
Rushabh Mehta
09ef9a5788 cleanup of login page 2014-02-19 15:21:04 +05:30
Rushabh Mehta
434f2d4794 more fixes to tree 2014-02-19 12:30:10 +05:30
Nabin Hait
16b8081a75 Merge pull request #457 from MaxMorais/patch-3
Fix  _mysql_exceptions.ProgrammingError: (1146, "Table 'wnmax.tabNone' d...
2014-02-19 11:08:49 +05:30
Nabin Hait
ee0d67f5c4 Merge branch 'develop' of github.com:frappe/frappe into develop 2014-02-19 11:07:11 +05:30
Rushabh Mehta
c168d1f1f6 fixed install and tree cleanup 2014-02-19 11:01:55 +05:30
Nabin Hait
e19440976a Export all rows from reportview 2014-02-19 11:00:58 +05:30
Maxwell
8b662d1cc3 Fix _mysql_exceptions.ProgrammingError: (1146, "Table 'wnmax.tabNone' doesn't exist") ```
```python
Traceback (most recent call last):
  File "/root/frappe/bin/frappe", line 9, in <module>
    load_entry_point('frappe==4.0.0-beta', 'console_scripts', 'frappe')()
  File "/root/frappe/bench/frappe/frappe/cli.py", line 44, in main
    run(fn, parsed_args)
  File "/root/frappe/bench/frappe/frappe/cli.py", line 67, in run
    out = globals().get(fn)(**args)
  File "/root/frappe/bench/frappe/frappe/cli.py", line 58, in new_fn
    return fn(*args, **new_kwargs)
  File "/root/frappe/bench/frappe/frappe/cli.py", line 262, in reinstall
    install(db_name=frappe.conf.db_name, verbose=verbose, force=True, reinstall=True)
  File "/root/frappe/bench/frappe/frappe/cli.py", line 58, in new_fn
    return fn(*args, **new_kwargs)
  File "/root/frappe/bench/frappe/frappe/cli.py", line 250, in install
    install_app("frappe", verbose=verbose)
  File "/root/frappe/bench/frappe/frappe/installer.py", line 106, in install_app
    add_to_installed_apps(name)
  File "/root/frappe/bench/frappe/frappe/installer.py", line 124, in add_to_installed_apps
    rebuild_website_sitemap_config()
  File "/root/frappe/bench/frappe/frappe/website/doctype/website_sitemap_config/website_sitemap_config.py", line 57, in rebuild_website_sitemap_config
    build_website_sitemap_config(app)
  File "/root/frappe/bench/frappe/frappe/website/doctype/website_sitemap_config/website_sitemap_config.py", line 87, in build_website_sitemap_config
    add_website_sitemap_config(*args)
  File "/root/frappe/bench/frappe/frappe/website/doctype/website_sitemap_config/website_sitemap_config.py", line 127, in add_website_sitemap_config
    frappe.bean(wsc).insert()
  File "/root/frappe/bench/frappe/frappe/model/bean.py", line 265, in insert
    return self.save()
  File "/root/frappe/bench/frappe/frappe/model/bean.py", line 315, in save
    self.run_method("after_insert")
  File "/root/frappe/bench/frappe/frappe/model/bean.py", line 238, in run_method
    frappe.call(getattr(self.controller, method), *args, **kwargs))
  File "/root/frappe/bench/frappe/frappe/__init__.py", line 493, in call
    return fn(*args, **newargs)
  File "/root/frappe/bench/frappe/frappe/website/doctype/website_sitemap_config/website_sitemap_config.py", line 29, in after_insert
    add_to_sitemap(opts)
  File "/root/frappe/bench/frappe/frappe/website/doctype/website_sitemap/website_sitemap.py", line 131, in add_to_sitemap
    bean.insert(ignore_permissions=True)
  File "/root/frappe/bench/frappe/frappe/model/bean.py", line 265, in insert
    return self.save()
  File "/root/frappe/bench/frappe/frappe/model/bean.py", line 309, in save
    self.run_method('validate')
  File "/root/frappe/bench/frappe/frappe/model/bean.py", line 238, in run_method
    frappe.call(getattr(self.controller, method), *args, **kwargs))
  File "/root/frappe/bench/frappe/frappe/__init__.py", line 493, in call
    return fn(*args, **newargs)
  File "/root/frappe/bench/frappe/frappe/website/doctype/website_sitemap/website_sitemap.py", line 33, in validate
    self.renumber_if_moved()
  File "/root/frappe/bench/frappe/frappe/website/doctype/website_sitemap/website_sitemap.py", line 42, in renumber_if_moved
    (self.doc.old_parent, self.doc.idx))
  File "/root/frappe/bench/frappe/frappe/db.py", line 101, in sql
    self._cursor.execute(query, values)
  File "build/bdist.linux-i686/egg/MySQLdb/cursors.py", line 205, in execute
  File "build/bdist.linux-i686/egg/MySQLdb/connections.py", line 36, in defaulterrorhandler
_mysql_exceptions.ProgrammingError: (1146, "Table 'wnmax.tabNone' doesn't exist")
```
2014-02-18 22:18:05 -02:00
Pratik Vyas
a4f176c5e1 fix #455 build_message_files boom 2014-02-18 22:31:00 +05:30
Rushabh Mehta
a2edeff319 website updates 2014-02-18 18:47:12 +05:30
Pratik Vyas
ec1f2fbfcf fix site arg handling 2014-02-18 17:03:29 +05:30
Nabin Hait
1b43b73887 Add default filter on ID when listview loaded from Toolber Search 2014-02-18 17:00:27 +05:30
Nabin Hait
daeceb8696 minor fix in website sitemap 2014-02-18 16:11:23 +05:30
Nabin Hait
50a6d807ed reset perms of module def 2014-02-18 15:52:25 +05:30
Nabin Hait
b004791fd4 reset perms of module def 2014-02-18 15:51:07 +05:30
Nabin Hait
449ce454ea minor fix 2014-02-18 15:07:38 +05:30
Rushabh Mehta
a88771f13a merge 2014-02-18 14:53:45 +05:30
Rushabh Mehta
438efbd965 more fixes 2014-02-18 14:52:55 +05:30
Rushabh Mehta
0e3d15aaf0 updates to website and cleanups 2014-02-18 14:24:18 +05:30
Nabin Hait
7c8ebaa820 Merge branch 'develop' of github.com:frappe/frappe into develop 2014-02-17 22:52:51 +05:30
Nabin Hait
e709d8a844 Load report fresh if route options provided 2014-02-17 22:49:39 +05:30
Pratik Vyas
f252b02280 fix site path in app.py 2014-02-17 20:24:10 +05:30
Pratik Vyas
6876df693b fix sites path issues 2014-02-17 19:47:13 +05:30
Pratik Vyas
2b45ed9b39 add sites_path to cli args 2014-02-17 16:02:31 +05:30
Pratik Vyas
9ddc093210 make rebuild_config and rebuild_sitemap optional in latest and add_to_installed_apps 2014-02-17 11:06:16 +05:30
Pratik Vyas
ee883c1863 Make sites_dir configurable 2014-02-17 11:05:32 +05:30
Anand Doshi
d594822d9c -webnotes +frappe 2014-02-14 17:44:19 +05:30
Anand Doshi
2bfe4cbf38 Fix in Bean 2014-02-14 17:30:40 +05:30
Rushabh Mehta
482e55ec33 bugfixes 2014-02-14 17:28:47 +05:30
Rushabh Mehta
024ddfcc5b -webnotes +frappe 💥 2014-02-14 14:55:11 +05:30