Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
仰若水
frappe
Commits
c0b84386
Commit
c0b84386
authored
9 years ago
by
Anand Doshi
Browse files
Options
Download
Plain Diff
Merge branch 'develop'
parents
54a1400f
bb007240
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
frappe/__version__.py
+1
-1
frappe/__version__.py
frappe/hooks.py
+1
-1
frappe/hooks.py
frappe/patches/v6_16/feed_doc_owner.py
+2
-0
frappe/patches/v6_16/feed_doc_owner.py
frappe/templates/pages/message.html
+5
-1
frappe/templates/pages/message.html
setup.py
+1
-1
setup.py
with
10 additions
and
4 deletions
+10
-4
frappe/__version__.py
View file @
c0b84386
from
__future__
import
unicode_literals
from
__future__
import
unicode_literals
__version__
=
"6.17.
1
"
__version__
=
"6.17.
2
"
This diff is collapsed.
Click to expand it.
frappe/hooks.py
View file @
c0b84386
...
@@ -5,7 +5,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd."
...
@@ -5,7 +5,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd."
app_description
=
"Full stack web framework with Python, Javascript, MariaDB, Redis, Node"
app_description
=
"Full stack web framework with Python, Javascript, MariaDB, Redis, Node"
app_icon
=
"octicon octicon-circuit-board"
app_icon
=
"octicon octicon-circuit-board"
app_version
=
"6.17.
1
"
app_version
=
"6.17.
2
"
app_color
=
"orange"
app_color
=
"orange"
source_link
=
"https://github.com/frappe/frappe"
source_link
=
"https://github.com/frappe/frappe"
app_license
=
"MIT"
app_license
=
"MIT"
...
...
This diff is collapsed.
Click to expand it.
frappe/patches/v6_16/feed_doc_owner.py
View file @
c0b84386
...
@@ -28,3 +28,5 @@ def execute():
...
@@ -28,3 +28,5 @@ def execute():
"name"
:
name
,
"name"
:
name
,
"owner"
:
owner
"owner"
:
owner
})
})
frappe
.
db
.
commit
()
This diff is collapsed.
Click to expand it.
frappe/templates/pages/message.html
View file @
c0b84386
...
@@ -2,7 +2,11 @@
...
@@ -2,7 +2,11 @@
{% block title %}{{ title }}{% endblock %}
{% block title %}{{ title }}{% endblock %}
{% block header %}{{ header }}{% endblock %}
{% block header %}
{% if header is defined -%}
<h1>
{{ header }}
</h1>
{%- endif %}
{% endblock %}
{% block page_content %}
{% block page_content %}
<!-- no-sidebar -->
<!-- no-sidebar -->
...
...
This diff is collapsed.
Click to expand it.
setup.py
View file @
c0b84386
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
from
pip.req
import
parse_requirements
from
pip.req
import
parse_requirements
version
=
"6.17.
1
"
version
=
"6.17.
2
"
requirements
=
parse_requirements
(
"requirements.txt"
,
session
=
""
)
requirements
=
parse_requirements
(
"requirements.txt"
,
session
=
""
)
setup
(
setup
(
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help