Skip to content
This repository has been archived by the owner on Sep 30, 2019. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: techmaxsolucoes/title_links
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: marquelzikri/title_links
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.

Commits on Oct 10, 2019

  1. Update setup.py

    Add pip > 10 support
    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    83677a7 View commit details
  2. Update routes.py

    Python 3 support
    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    23f193f View commit details
  3. Update routes.py

    Python 3 support
    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    1335d22 View commit details
  4. Update routes.py

    Fix basestring in python 3
    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    9b19c00 View commit details
  5. Update routes.py

    test
    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    7213927 View commit details
  6. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    a2992d4 View commit details
  7. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    a72034a View commit details
  8. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    48bb110 View commit details
  9. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    479264c View commit details
  10. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    42bbd5a View commit details
  11. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    c77c270 View commit details
  12. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    acc4953 View commit details
  13. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    eb86d13 View commit details
  14. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    9d4bfbf View commit details
  15. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    ae83675 View commit details
  16. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    fe32b5f View commit details
  17. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    8181737 View commit details
  18. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    7003d7d View commit details
  19. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    b5d2712 View commit details
  20. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    d036753 View commit details
  21. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    8beb06b View commit details
  22. Update routes.py

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    805172e View commit details
  23. Update title_links.js

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    9ead690 View commit details
  24. Update README.md

    marquelzikri authored Oct 10, 2019
    Copy the full SHA
    cfdba0b View commit details

Commits on Oct 11, 2019

  1. Add allowed routes

    marquelzikri committed Oct 11, 2019
    Copy the full SHA
    bc93305 View commit details
  2. Copy the full SHA
    d9c1788 View commit details
  3. Update README.md

    Allowed Routes
    marquelzikri authored Oct 11, 2019
    Copy the full SHA
    18c027f View commit details
  4. Update README.md

    marquelzikri authored Oct 11, 2019
    Copy the full SHA
    d82188c View commit details
  5. Copy the full SHA
    a414ccd View commit details
  6. Delete _config.yml

    marquelzikri authored Oct 11, 2019
    Copy the full SHA
    0401fb8 View commit details

Commits on Oct 13, 2019

  1. Change the hash detection method)

    marquelzikri committed Oct 13, 2019
    Copy the full SHA
    77ad8c3 View commit details
  2. Add a Setup for the formatter

    marquelzikri committed Oct 13, 2019
    Copy the full SHA
    d9e83a7 View commit details
  3. Update README.md

    marquelzikri authored Oct 13, 2019
    Copy the full SHA
    38c85ad View commit details

Commits on Oct 20, 2019

  1. add page message before reload

    marquelzikri committed Oct 20, 2019
    Copy the full SHA
    7559d39 View commit details
  2. Fix script not triggered

    marquelzikri committed Oct 20, 2019
    Copy the full SHA
    75b4c84 View commit details

Commits on Oct 21, 2019

  1. Performance upgrade

    marquelzikri committed Oct 21, 2019
    Copy the full SHA
    d3a0fce View commit details
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## Title Links
## Title Links (ERPNext version 12 support)

### Note
I added allowed routes functions so that this Link field formatter only works on desired routes and not breaking other Link fields on some routes. Because somehow this formatter doesn't worked on reference_doctype field at 'Data Export'. You can add your preffered routes at Title Link Fields Formatter Setup doctype.

##

In some cases, we need hide the standard name of a DocType in favor of another value in the doctype,
and get it simple to the end user.
@@ -41,4 +46,4 @@ Don't worry with Link Formatters, title links already define it to you!

#### License

MIT
MIT
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from pip.req import parse_requirements
# from pip.req import parse_requirements

try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements

version = '0.0.1'
requirements = parse_requirements("requirements.txt", session="")
6 changes: 3 additions & 3 deletions title_links/hooks.py
Original file line number Diff line number Diff line change
@@ -109,6 +109,6 @@
# Overriding Whitelisted Methods
# ------------------------------
#
override_whitelisted_methods = {
"frappe.desk.search.search_link": "title_links.routes.search_link"
}
# override_whitelisted_methods = {
# "frappe.desk.search.search_link": "title_links.routes.search_link"
# }
Loading