-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Customize HTML generation #76
Comments
Actually the HTML generation has moved to the Eclipse Phoenix (http://www.eclipse.org/projects/project.php?id=technology.phoenix) Webapp generation. This has been done to create a common look and feel for Eclipse projects, i.e. the documentation looks like the website itself. I also thought about reimplementing a simple HTML output. If you need that, feel free to tell me, I will try to build that as fast as possible. As a fast workaround, just checkout the Phoenix code from CVS and put it in your webserver root. For me it works like a charm. |
Actually I didn't know about Phoenix! I took it from the CVS and it actually works like a charm :) Probably having plain html generated code might help, though probably it's not a big requirement; I'd be happy to help with plain html generation! |
You can customize the behaviour of the Phoenix application in several ways. One of them is to include a file named _projectCommon.php in the root folder of your Phonix app. I posted an example here: https://gist.github.com/1789093 You can also take a look at the generated include.php, which sets authors and the page title. |
concerning the html for the website, I see that it generates php files which refer to (include) php files directly from eclipse.org file (actually, they seem to assume that the html files will be installed on the eclipse website):
e.g., <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
is there same way to customize this?
otherwise I don't see how to use the generated html files in our own web server
The text was updated successfully, but these errors were encountered: