From nick at afternight.org Thu Dec 1 09:14:00 2011 From: nick at afternight.org (Nick Lanham) Date: Thu, 01 Dec 2011 15:14:00 +0100 Subject: [aur-dev] Select All in Package Listing Message-ID: <4ED78BA8.10303@afternight.org> There was some talk on the aur-general list about how it would be nice to have a select all option on the package listing page. This patch adds that. Note that I just dropped the javascript into a > + > > > - > + > > >
  > + + title='' > + onClick='clickAll(this,document.getElementById("result_table"))' > + name='SelAllCheck' value='1' /> > + From nick at afternight.org Fri Dec 2 05:12:24 2011 From: nick at afternight.org (Nick Lanham) Date: Fri, 02 Dec 2011 11:12:24 +0100 Subject: [aur-dev] Select All in Package Listing In-Reply-To: <20111202093534.GB18088@blizzard> References: <4ED78BA8.10303@afternight.org> <20111202093534.GB18088@blizzard> Message-ID: <4ED8A488.2040909@afternight.org> Yeah, sorry about the patch format, I should have read the guidelines more carefully. I will get it right when I re-submit. I realized that there was probably a conscious avoidance of javascript (which I'm generally for too), but for modifying dom elements like this, it really does make sense. There would be a more convoluted way to do it, sort of like how search is done, with a new request and a parameter to indicate that all checkboxes should be checked or un-checked, so if there's really a desire to keep js out of the code, let me know, and I'll try to get that working for the re-submit. Regards, Nick On 12/02/2011 10:35 AM, Lukas Fleischer wrote: > On Thu, Dec 01, 2011 at 03:14:00PM +0100, Nick Lanham wrote: >> There was some talk on the aur-general list about how it would be >> nice to have a select all option on the package listing page. This >> patch adds that. > Please send full Git-formatted patches (generated by > git-format-patch(1)) and please send them inline instead of attaching > stuff. > >> Note that I just dropped the javascript into a >> + >> >> >> - >> + >> >> >>
  >> + > + title='' >> + onClick='clickAll(this,document.getElementById("result_table"))' >> + name='SelAllCheck' value='1' /> >> + From andrea at archlinux.org Fri Dec 9 04:49:34 2011 From: andrea at archlinux.org (Andrea Scarpino) Date: Fri, 9 Dec 2011 10:49:34 +0100 Subject: [aur-dev] [PATCH] Set the title in the Trusted User page Message-ID: <1323424174-5250-1-git-send-email-andrea@archlinux.org> --- web/html/tu.php | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/web/html/tu.php b/web/html/tu.php index 6e202c8..6e04353 100644 --- a/web/html/tu.php +++ b/web/html/tu.php @@ -5,7 +5,10 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); include_once("aur.inc.php"); set_lang(); check_sid(); -html_header(); + +$title = __("Trusted User"); + +html_header($title); # Default votes per page $pp = 10; -- 1.7.8 From archlinux at cryptocrack.de Sat Dec 17 08:55:22 2011 From: archlinux at cryptocrack.de (Lukas Fleischer) Date: Sat, 17 Dec 2011 14:55:22 +0100 Subject: [aur-dev] [PATCH] Set the title in the Trusted User page In-Reply-To: <1323424174-5250-1-git-send-email-andrea@archlinux.org> References: <1323424174-5250-1-git-send-email-andrea@archlinux.org> Message-ID: <20111217135522.GA3573@blizzard> On Fri, Dec 09, 2011 at 10:49:34AM +0100, Andrea Scarpino wrote: > --- > web/html/tu.php | 5 ++++- > 1 files changed, 4 insertions(+), 1 deletions(-) > Pushed, thanks! > diff --git a/web/html/tu.php b/web/html/tu.php > index 6e202c8..6e04353 100644 > --- a/web/html/tu.php > +++ b/web/html/tu.php > @@ -5,7 +5,10 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); > include_once("aur.inc.php"); > set_lang(); > check_sid(); > -html_header(); > + > +$title = __("Trusted User"); > + > +html_header($title); > > # Default votes per page > $pp = 10; > -- > 1.7.8 From archlinux at cryptocrack.de Sat Dec 17 09:00:59 2011 From: archlinux at cryptocrack.de (Lukas Fleischer) Date: Sat, 17 Dec 2011 15:00:59 +0100 Subject: [aur-dev] [PATCH 0/5] Package details view layout changes In-Reply-To: References: <1320414177-22877-1-git-send-email-archlinux@cryptocrack.de> Message-ID: <20111217140059.GB3573@blizzard> On Fri, Nov 04, 2011 at 10:28:33AM -0500, Dan McGee wrote: > On Fri, Nov 4, 2011 at 8:42 AM, Lukas Fleischer > wrote: > > This patch set basically syncs the package details layout with what > > archweb uses and makes the rendered page, as well as the source code, > > look cleaner and more consistent. > > > > I plan to put more efforts in cleaning up our HTML and making the AUR > > integrate well with the rest of www.archlinux.org. We might eventually > > just use "archweb.css" with a few AUR-specific extensions. > I'd be happy to ensure compatibility on this and keeping differences > to a minimum or zero. > > > Any objections from the "Arch Linux/AUR segregation" front..? > > > > Dan, any objections? > Nope. I didn't look in detail at all of the patches but generally > seems fine to me, as long as AUR is prominent somewhere near the top > of the page and in the page title. I rebased all of these patches and refactored several parts of the AUR website, based on the archweb layout. You can find these changes in my "archweb-integration" branch [1]. Note that I might rebase this branch from time to time, so be prepared when setting up a tracking branch. The most important parts are already fixed but there's still a lot of things to do. Comments and suggestions welcome! > > > Lukas Fleischer (5): > > ?pkg_details.php: Use a table for package details > > ?pkg_details.php: Add link to category search > > ?pkg_details.php: Sync metadata layout with archweb > > ?pkg_details.php: Sync package actions layout with archweb > > ?pkg_details.php: Use sane format for date strings > I realized I signed off on these date strings, but also noticed the > dates on the front page stats and such are in the ugly format- might > want to touch those up too. > > > > > ?web/html/css/arch.css ? ? ? ?| ? ?3 - > > ?web/html/css/containers.css ?| ? 81 +++++++++++++++ > > ?web/template/pkg_details.php | ?226 +++++++++++++++++++++--------------------- > > ?3 files changed, 196 insertions(+), 114 deletions(-) > > > > -- > > 1.7.7.2 > > > > [1] http://git.cryptocrack.de/aur.git/?h=archweb-integration