Makarand Bauskar
09a3a77ec2
[revert] Print traceback on ImportError in get_app_commands ( #3846 )
* [revert] Print traceback on ImportError in get_app_commands
* [tests] fixed the customize form test cases
před 8 roky
mbauskar
53167626ab
resolved merge conflicts
před 8 roky
mbauskar
286c92aef0
Merge branch 'staging'
před 8 roky
mbauskar
aa8eabaa7e
bumped to version 8.6.6
před 8 roky
mbauskar
f646af1c33
resolved merge conflicts
před 8 roky
mbauskar
80a2beb32c
resolved merge conflicts
před 8 roky
mbauskar
01b75bf1c1
Merge branch 'hotfix'
před 8 roky
mbauskar
3f854301e4
bumped to version 8.6.5
před 8 roky
Rushabh Mehta
eb2c725dba
[fix] stop action if trigger fails for validate and before_, fixes frappe/erpnext#10200 ( #3842 )
* [fix] stop action if trigger fails for validate and before_, fixes frappe/erpnext#10200
* [fix] stop action if trigger fails for validate and before_, fixes frappe/erpnext#10200
* [fix] codacy
* [fix] add test to tests.txt
před 8 roky
Aditya Hase
62bb03ef6e
Replaced Python 2 print syntax with Python 3 syntax ( #3838 )
* Replaced Python 2 print syntax with Python 3 syntax
* Update utils.py
před 8 roky
Aditya Hase
16a9bdfd31
Replaced urllib.unquote imports with six.moves.urllib.parse.unquote ( #3836 )
před 8 roky
Aditya Hase
9d7d384a63
Replaced urllib.quote imports with six.moves.urllib.parse.quote ( #3837 )
před 8 roky
Aditya Hase
729bbf0dad
Replaced Python 2 exec syntax usage with Python 3 syntax ( #3835 )
před 8 roky
Aditya Hase
7c9c53840a
Replaced types import with six ( #3834 )
Importing six.text_type instead of types.UnicodeType and
six.binary_type instead of types.StringType
před 8 roky
Aditya Hase
b4b889835a
Print traceback on ImportError in get_app_commands ( #3833 )
před 8 roky
Aditya Hase
ec9a01e3aa
Replaced 'except' clause syntax ( #3827 )
před 8 roky
Aditya Hase
a3070690fd
FileAndRedisStream inherits io.FileIO instead of file ( #3826 )
io.FileIO is available in both Python 2 and 3, file is removed in
python 3.
před 8 roky
Aditya Hase
e6bd1e4995
Replaced all instances of 'unicode' with 'six.text_type' ( #3825 )
před 8 roky
bcornwellmott
1f46637cc2
Fix workflow override ( #3824 )
před 8 roky
RogueRonin
4776011cbc
check whether the used filters were really parseable and usable and did not just result in an empty string or dict ( #3822 )
před 8 roky
Rushabh Mehta
8bc72a1255
[minor] list is extensible
před 8 roky
Makarand Bauskar
fc715efdbb
[hotfix] fixes for AttributeError: 'NoneType' object has no attribute 'split' ( #3840 )
* [hotfix] fixes for AttributeError: 'NoneType' object has no attribute 'split'
* [tests] added test cases for not in and in filters
před 8 roky
Makarand Bauskar
465d6b3431
[minor] fixes in frappe.client.get_value method ( #3830 )
před 8 roky
Makarand Bauskar
20145b231e
[minor] check if user exists or not ( #3831 )
* [minor] check if user exists or not
* [minor] remove the User Permission Link from module view
před 8 roky
Aditya Hase
774c5fd2c6
Replaced mixed usage of tabs and spaces for indents with tabs only ( #3828 )
před 8 roky
Nabin Hait
89860d7ef3
Update user permissions only if record if present ( #3820 )
před 8 roky
Makarand Bauskar
ecaf4f6cd1
merged hotfix branch into staging ( #3821 )
* [hotfix] Linked with and List item click (#3803 )
* [hotfix] Linked with and List item click
* Run a single test using Test Runner
* Add test for Linked With
* [minor] List view fixes
* bumped to version 8.6.3
* [Fix] Getting an error datetime.datetime is not iterable during importing purchase invoice data (#3818 )
* Update quick_entry.js (#3815 )
Fix typo
* bumped to version 8.6.4
před 8 roky
Rushabh Mehta
ece91d903c
[docs] simplified docs home
před 8 roky
Rushabh Mehta
e75dc25a72
[minor] show breadcrumbs in mobile view
před 8 roky
Rushabh Mehta
590310091b
[docs] remove {{docs_base_url}}
před 8 roky
Rushabh Mehta
8f2b001bd0
[docs] add headings
před 8 roky
mbauskar
b1e70892d3
Merge branch 'master' into develop
před 8 roky
mbauskar
0e92ffc108
Merge branch 'hotfix'
před 8 roky
mbauskar
99317b2f65
bumped to version 8.6.4
před 8 roky
Faris Ansari
343af6af46
Hide links in pdf ( #3814 )
* Hide links in pdf
* Show footer in print preview
před 8 roky
Aditya Hase
928ebb66a6
Replaced HTMLParser imports with six.moves.html_parser ( #3812 )
před 8 roky
Aditya Hase
839874b357
Redefine lambdas to accept multiple args instead of a packed tuple ( #3811 )
Unlike Python 2, Python 3 does not automatically unpack arguments
to lambdas passed as a tuple into named arguments.
Redefinining lamdas to accept separate arguments instead of a
tuple allows them to work in both Python 2 and 3.
před 8 roky
Aditya Hase
d3395dfd28
Replaced StringIO and cStringIO imports with six.StringIO ( #3810 )
StringIO and cStringIO modules are replaced with io.StringIO in
Python 3. six.StringIO is an alias for StringIO.StringIO in
Python 2 and io.StringIO in Python 3
před 8 roky
Makarand Bauskar
e6e16d112b
[minor] set apply_for_all_roles to 1 in update user permissions patch ( #3809 )
před 8 roky
Faris Ansari
f3f21554b2
Email footer refactor ( #3807 )
* Email footer refactor
* styling fixes
* Unsubscribe message
* fix test
před 8 roky
Aditya Hase
bab692ff59
Replaced mixed usage of tabs and spaces for indents with tabs only ( #3813 )
Python 3 (PEP 8) strictly disallows mixed use of tabs and spaces
for indentation
frappe innstalltion only throws error on frappe/utils/jinja.py as
of now but the rest are almost equally likely to fail, so changed
all of them in one commit
před 8 roky
ci2014
c4292ac6a4
Update quick_entry.js ( #3815 )
Fix typo
před 8 roky
rohitwaghchaure
4396cbd0cc
[Fix] Getting an error datetime.datetime is not iterable during importing purchase invoice data ( #3818 )
před 8 roky
mbauskar
11da197bba
resolved merge conflicts
před 8 roky
mbauskar
e377e420a5
Merge branch 'hotfix'
před 8 roky
mbauskar
04aa13fc9b
bumped to version 8.6.3
před 8 roky
Rushabh Mehta
f0f16ff815
[fix] save last route on error so user logs in to the correct page, fixes frappe/erpnext#8174
před 8 roky
Rushabh Mehta
df66dfe941
[fix] render.py for home
před 8 roky
Rushabh Mehta
50d06d1202
[minor] sitemap.xml is also programmable
před 8 roky
Rushabh Mehta
f609a478ae
[refactor] user permissions ( #3713 )
* [refactor] user permissions
* [fix] tests
* [ux] user-permissions
* [minor] cleanup system settings
* [minor] end progress
před 8 roky