${job.content}
29 |├── src
├── main
│ ├── webapp
│ │ ├── META-INF
│ │ │ └── context.xml
│ │ └── WEB-INF
│ │ │ └── jsp
│ │ │ ├── about.jsp
│ │ │ ├── not_found.jsp
│ │ │ ├── exception.jsp
│ │ │ ├── contact.jsp
│ │ │ ├── job.jsp
│ │ │ ├── privacy_policy.jsp
│ │ │ ├── jobs.jsp
│ │ │ ├── search.jsp
│ │ │ └── main.jsp
│ ├── resources
│ │ ├── static
│ │ │ ├── img
│ │ │ │ ├── java.jpg
│ │ │ │ ├── java.png
│ │ │ │ ├── net.png
│ │ │ │ ├── php.png
│ │ │ │ ├── sql.png
│ │ │ │ ├── android.png
│ │ │ │ ├── bancoaz.png
│ │ │ │ ├── bossaz.png
│ │ │ │ ├── python.png
│ │ │ │ ├── rabotaz.png
│ │ │ │ ├── background.png
│ │ │ │ ├── developer.png
│ │ │ │ ├── jobsearchaz.jpg
│ │ │ │ └── developerjobs-logo.jpg
│ │ │ └── js
│ │ │ │ ├── main.js
│ │ │ │ ├── jobs.js
│ │ │ │ └── paginathing.js
│ │ ├── developer_jobs.sqlite
│ │ ├── messages.properties
│ │ ├── application.properties
│ │ └── logback.xml
│ └── java
│ │ └── az
│ │ └── mm
│ │ └── developerjobs
│ │ ├── model
│ │ ├── Search.java
│ │ ├── User.java
│ │ └── Pagination.java
│ │ ├── constant
│ │ ├── JspPages.java
│ │ └── ImageSource.java
│ │ ├── DeveloperjobsApplication.java
│ │ ├── config
│ │ ├── Config.java
│ │ └── SQLiteDialect.java
│ │ ├── repository
│ │ └── JobRepository.java
│ │ ├── entity
│ │ └── JobInfo.java
│ │ ├── service
│ │ └── JobService.java
│ │ └── controller
│ │ └── IndexController.java
└── test
│ └── java
│ └── az
│ └── mm
│ └── developerjobs
│ └── DeveloperjobsApplicationTests.java
├── .mvn
└── wrapper
│ └── maven-wrapper.properties
├── .gitignore
├── README.md
├── nb-configuration.xml
├── pom.xml
├── mvnw.cmd
├── mvnw
└── LICENSE
/src/main/webapp/META-INF/context.xml:
--------------------------------------------------------------------------------
1 |
2 |
| Name: | 16 |||
| Email: | 21 |||
| Message: | 26 |||
| 31 | | ||
www.developerjobs.info values the privacy of its visitors the following document will explain the type of information we collect. We just collect very basic information in order to maintain member’s profile which includes name/email. To become a register member of www.developerjobs.info visitors provide us name/email with their own consent. Like several other websites we at www.developerjobs.info maintain log files, but it does not include personal identifiable data.
18 |Third party software like Google analytics helps us to monitor the user trend on our website, the information we collect through Google analytics includes type of browser, IP address of the visitor, referral website, demographic information and other such non identifiable data. And the sole purpose behind is to monitor the user trend on our website and improve our services accordingly.
19 |Google as third party software use cookies for the processing of ads on our website, www.developerjobs.info also use cookies we keep the record of user preferences, the record of the page user visits and other information that can be sent via browser of visitor.
20 |Google adsense of other advertisers on www.developerjobs.info use cookies to evaluate and personalize the content on our website you see in the form of ads. These third party advertisers receive your IP address and no other personally identifiable data. All these third party advertisers have their own privacy policy and www.developerjobs.info has no control on their process of collecting information to evaluate the effectiveness of their advertising material. Anyone can visit the privacy statement of these advertisers for additional information.
21 |If we provide link to third party the responsibility to share personally identifiable information with them rests with you, we do not take any responsibility of the content published on third party website. If you have any question regarding the pricay policy of www.developerjobs.info you can contact us here.
22 |23 |
Deadline: ${v.deadline}
" + JSON.stringify(data, null, 4) + ""; 106 | $('#modal2').html(json); 107 | } 108 | 109 | 110 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/search.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Document : search 3 | Created on : Mar 21, 2017, 2:03:34 PM 4 | Author : USER 5 | --%> 6 | 7 | <%@page contentType="text/html" pageEncoding="UTF-8"%> 8 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 9 | 10 | 11 | 36 | 37 | 38 |