-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* jn/gitweb-js: gitweb: Make JavaScript ability to adjust timezones configurable gitweb.js: Add UI for selecting common timezone to display dates gitweb: JavaScript ability to adjust time based on timezone gitweb: Unify the way long timestamp is displayed gitweb: Refactor generating of long dates into format_timestamp_html gitweb.js: Provide getElementsByClassName method (if it not exists) gitweb.js: Introduce code to handle cookies from JavaScript gitweb.js: Extract and improve datetime handling gitweb.js: Provide default values for padding in padLeftStr and padLeft gitweb.js: Update and improve comments in JavaScript files gitweb: Split JavaScript for maintability, combining on build
- Loading branch information
Showing
11 changed files
with
1,023 additions
and
241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
GIT web interface (gitweb) - JavaScript | ||
======================================= | ||
|
||
This directory holds JavaScript code used by gitweb (GIT web interface). | ||
Scripts from there would be concatenated together in the order specified | ||
by gitweb/Makefile into gitweb/static/gitweb.js, during building of | ||
gitweb/gitweb.cgi (during gitweb building). The resulting file (or its | ||
minification) would then be installed / deployed together with gitweb. | ||
|
||
Scripts in 'lib/' subdirectory compose generic JavaScript library, | ||
providing features required by gitweb but in no way limited to gitweb | ||
only. In the future those scripts could be replaced by some JavaScript | ||
library / framework, like e.g. jQuery, YUI, Prototype, MooTools, Dojo, | ||
ExtJS, Script.aculo.us or SproutCore. | ||
|
||
All scripts that manipulate gitweb output should be put outside 'lib/', | ||
directly in this directory ('gitweb/static/js/'). Those scripts would | ||
have to be rewritten if gitweb moves to using some JavaScript library. | ||
|
||
See also comments in gitweb/Makefile. |
Oops, something went wrong.